/* Container for the form */
.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

/* Form heading */
h1 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

/* Form group */
.form-group {
    margin-bottom: 15px;
}

/* Form labels */
label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Form inputs */
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Form button */
button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
}

/* Button hover effect */
button:hover {
    background-color: #0056b3;
}

/* Modal Background (Hidden by Default) */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    padding-top: 200px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent black */
    backdrop-filter: blur(5px); /* Blur effect */
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    margin: auto;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;

}
.modal-content input{

    margin-left:133px;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Close Button */
.close-btn {
/*            background: #ff4d4d;*/
color: white;
border: none;
padding: 8px 16px;
cursor: pointer;
border-radius: 5px;
margin-top: 10px;
}

.close-btn:hover {
    background: #52B788;
}

/* Open Modal Button */
.open-modal {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.open-modal:hover {
    background: #0056b3;
}
/*SPINNER */
.spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    /*position: relative;*/
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner::before,
.spinner::after {
 border: 8.6px solid #99947d;
 border-radius: 50%;
 position: absolute;
 content: '';
 display: block;
}

.spinner::before {
 width: 43.2px;
 height: 43.2px;
 border-bottom-color: transparent;
 border-left-color: transparent;
 animation: spinner-1o3y8q 0.75s infinite linear reverse;
}

.spinner::after {
 animation: spinner-1o3y8q 0.5s infinite linear;
 height: 72px;
 width: 72px;
 border-right-color: transparent;
 border-top-color: transparent;
}

@keyframes spinner-1o3y8q {
 to {
  transform: rotate(360deg);
}
}