
body {
    background-color: #f0f2f5;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 400px;
    margin: auto;
    padding-top: 100px;
}

form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px; /* More subtle border radius */
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1); /* Softened shadow */
}

.form-control, .form-select {
    border-radius: 5px; /* Subtle border-radius */
    /*background-color: #f0f2f5;*/
    border: 1px solid #ced4da; /* Slightly visible border */
    padding-left: 20px;
    height: 48px; /* Adjusted for a sleek look */
}

.btn-primary {
    background-color: #4e73df;
    border: none;
    border-radius: 5px; /* Matching subtle radius */
    padding: 10px 30px; /* Adjusted padding for a sleek look */
    height: auto; /* Auto height for button */
    width: 100%; /* Full width */
}

.btn-primary:hover {
    background-color: #3957c4;
}


.form-text {
    font-size: 0.875em;
}

/* Adding styles for the modal */
.modal-content {
    border-radius: 5px;
}

.btn-close {
    background: none;
    border: none;
}

.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 20px auto; /* Center the loader */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.form-section.active {
    display: block;
    opacity: 1;
}

.policy_submit_text {
    font-size: 0.8em;
    color: gray;
    text-align: center;
    margin-top: 20px;
}

.terms-url {
    color: #4c6d8a;
}

.toggle-password {
    position: absolute;
    right: 14px;
    bottom: 57px;
    cursor: pointer;
}

img.toggle-password-image {
    width: 18px;
    height: 18px;
    opacity: .45;
}

.form-control-password {
    position: relative;
}