/* Reset and Base Styles */


/* Form Container */
.form-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 30px;
    margin: 20px auto;
}

/* Form Header */
.form-container h1 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

/* Input Groups */
.input-group {
    margin-bottom: 15px;
    position: relative;
}

.input-group label {
    display: block;
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #000000;
    outline: none;
}

/* Submit Button */
.btn {
    width: 100%;
    padding: 12px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #8c8d8e;
}

/* Switch Form Link */
.switch-form {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

.switch-form a {
    color: #090a0a;
    text-decoration: none;
    font-weight: 500;
}

.switch-form a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .form-container {
        padding: 25px 20px;
    }
    
    .form-container h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .input-group {
        margin-bottom: 12px;
    }
    
    .input-group input {
        padding: 10px 12px;
    }
    
    .btn {
        padding: 10px;
        font-size: 15px;
        margin-top: 8px;
    }
}

@media (max-width: 360px) {
    .form-container {
        padding: 20px 15px;
    }
    
    .form-container h1 {
        font-size: 20px;
    }
    
    .input-group label {
        font-size: 13px;
    }
    
    .switch-form {
        font-size: 13px;
    }
}
.field_error{
    color: red;
}
.email_verify_otp{
    display: none;
}