/* Auto-extracted from resources/views/student/register.blade.php */

#registrationForm {
        width: 100%;
        max-width: 100%;
    }
    
    .form-group {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        font-size: 14px;
        color: #333;
        text-align: left;
        width: 100%;
    }
    
    .input-wrapper {
        width: 100%;
        position: relative;
    }
    
    /* Ensure all inputs have visible text */
    #registrationForm input[type="text"],
    #registrationForm input[type="email"],
    #registrationForm input[type="tel"],
    #registrationForm input[type="date"],
    #registrationForm input[type="password"],
    #registrationForm select {
        color: #333 !important;
        -webkit-text-fill-color: #333 !important;
    }
    
    .input-wrapper input,
    .input-wrapper select {
        width: 100%;
        text-align: left;
        padding: 14px 45px 14px 45px;
        border: 1px solid #d4d4d4;
        border-radius: 8px;
        font-size: 15px;
        background: #fafafa;
        color: #333 !important;
        -webkit-text-fill-color: #333 !important;
        box-sizing: border-box;
    }
    
    .input-wrapper input:focus,
    .input-wrapper select:focus {
        outline: none;
        border-color: #2971b7;
        box-shadow: 0 0 0 3px rgba(41, 113, 183, 0.1);
        background: white;
        color: #333 !important;
        -webkit-text-fill-color: #333 !important;
    }
    
    .input-wrapper input::placeholder {
        text-align: left;
        color: #9ca3af !important;
        opacity: 1;
        -webkit-text-fill-color: #9ca3af !important;
    }
    
    .input-wrapper input:-webkit-autofill,
    .input-wrapper input:-webkit-autofill:hover,
    .input-wrapper input:-webkit-autofill:focus {
        -webkit-text-fill-color: #333 !important;
        -webkit-box-shadow: 0 0 0px 1000px #fafafa inset !important;
        box-shadow: 0 0 0px 1000px #fafafa inset !important;
        color: #333 !important;
    }
    
    .input-wrapper input:-webkit-autofill:focus {
        -webkit-box-shadow: 0 0 0px 1000px white inset !important;
        box-shadow: 0 0 0px 1000px white inset !important;
    }
    
    #registrationForm > div:first-child {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .sign-in-btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        background: #2971b7;
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        margin-top: 10px;
        margin-bottom: 15px;
        display: block;
    }
    
    .sign-in-btn:hover {
        background: #1e5a8e;
    }
    
    .create-account {
        text-align: center;
        margin-top: 15px;
        font-size: 14px;
        color: #666;
    }
    
    .create-account a {
        color: #2971b7;
        text-decoration: none;
        font-weight: 500;
    }
    
    .create-account a:hover {
        text-decoration: underline;
    }
    
    .otp-section {
        width: 100%;
    }
    
    .otp-input {
        transition: all 0.3s ease;
        text-align: center !important;
    }
    
    .otp-input:focus {
        outline: none;
        border-color: #2971b7;
        box-shadow: 0 0 0 3px rgba(41, 113, 183, 0.1);
    }
    
    select {
        cursor: pointer;
        text-align: left;
        color: #333 !important;
    }
    
    select option {
        text-align: left;
        color: #333 !important;
        background: white;
    }
    
    .alert {
        text-align: left;
    }
    
    .alert ul {
        text-align: left;
        padding-left: 20px;
    }
    
    .alert ul li {
        text-align: left;
    }
    
    @media (max-width: 768px) {
        #registrationForm > div:first-child {
            grid-template-columns: 1fr !important;
        }
        
        .form-group {
            width: 100%;
        }
        
        .input-wrapper {
            width: 100%;
        }
    }
