/* Registration Form Styles */
.register-sec {
    padding: 20px;
    background-color: #ffffff69;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0px 0px 7px 1px #00000026;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.input-field {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.input-field input,
.input-field select {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 14px;
}

.input-field input::placeholder {
    color: #777;
}

.input-field .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0176bb;
    font-size: 18px;
}

.input-field .toggle-visibility {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    cursor: pointer;
}

.city-dropdown {
    position: relative;
}

.city-dropdown select {
    appearance: none;
    background-color: #f5f5f5;
    color: #333;
}

.city-dropdown .dropdown-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0176bb;
    pointer-events: none;
}

.input-field .get-code {
    padding: 0 15px;
    background-color: #0176bb;
    color: #ffffff;
    border: none;
    height: 100%;
    white-space: nowrap;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.register-button {
    background-color: #0176bb;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 10px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.register-button:hover {
    background-color: #0165a3;
}

.back-link {
    text-align: center;
    margin-top: 20px;
}

.back-link a {
    color: #0176bb;
    text-decoration: none;
}

/* Password Validation Tips */
.password-validation-tips {
    margin-top: -5px;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.validation-item {
    display: flex;
    align-items: center;
    margin: 5px 0;
    font-size: 12px;
    color: #666;
}

.validation-item i {
    margin-right: 8px;
    font-size: 14px;
}

.validation-item i.fa-times-circle {
    color: #ff5252;
}

.validation-item i.fa-check-circle {
    color: #4CAF50;
}

/* OTP Verification Styles */
.input-field.otp-verification {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    margin-top: 0;
    margin-bottom: 0;
}

.input-field.otp-verification input {
    padding: 15px 15px 15px 50px;
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 14px;
    width: calc(100% - 120px);
}

.input-field.otp-verification .resend-otp {
    padding: 0 15px;
    background-color: #0176bb;
    color: #ffffff;
    border: none;
    height: 100%;
    white-space: nowrap;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    min-width: 120px;
    transition: background-color 0.3s ease;
}

.input-field.otp-verification .resend-otp:hover {
    background-color: #0165a3;
}

.otp-section {
   
color: white;
   
text-align: center;
}
.otp-text{
    background-color: #0176bb;
    border-radius: 8px;
    padding: 5px;
    font-size: 12px;
    margin-bottom: 10px;
}
.otp-section p {
    margin: 0;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .register-form {
        max-width: 100%;
    }
}