
    /* Hide number input spinners */
    input[type=number]::-webkit-inner-spin-button, 
    input[type=number]::-webkit-outer-spin-button { 
        -webkit-appearance: none; 
        margin: 0; 
    }
    input[type=number] {
        -moz-appearance: textfield; /* Firefox */
    }
    .radio-label {
        font-size: 18px;
    }
    .custom-radio {
        width: 20px;
        height: 20px;
    }
    
    /* Enhanced Role selection styles */
    .role-selection-container {
        margin-bottom: 40px;
        overflow: hidden;
    }
    .role-selection-buttons {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        gap: 30px;
        margin-bottom: 20px;
        transition: all 0.5s ease;
    }
    .role-option {
        flex: 1;
        text-align: center;
        background: #f8fafc;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        padding: 25px 15px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
        border: 2px solid transparent;
    }
    .role-option:hover {
        transform: translateY(-5px);
    }
    .role-option.active {
        border-color: #3b82f6;
        background: linear-gradient(145deg, #f0f7ff, #ffffff);
    }
    .role-option::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #3b82f6, #60a5fa);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }
    .role-option.active::before {
        opacity: 1;
    }
    .role-icon {
        font-size: 32px;
        color: #3b82f6;
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }
    .role-option.active .role-icon {
        transform: scale(1.2);
    }
    .role-question {
        font-size: 16px;
        margin-bottom: 8px;
        color: #64748b;
        font-weight: 500;
    }
    .role-name {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 15px;
        color: #1e293b;
    }
    .role-description {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 20px;
        line-height: 1.5;
        height: 65px;
        overflow: hidden;
    }
    .role-button {
        border: 2px solid #3b82f6;
        border-radius: 30px;
        padding: 12px 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0 auto;
        max-width: 200px;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    .role-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: #3b82f6;
        transition: all 0.4s ease;
        z-index: -1;
    }
    .role-button:hover::before {
        left: 0;
    }
    .role-button span {
        font-weight: bold;
        font-size: 16px;
        color: #3b82f6;
        transition: color 0.3s ease;
        position: relative;
        z-index: 2;
    }
    .role-button:hover span {
        color: white;
    }
    .role-button.active {
        background-color: #3b82f6;
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
        transform: translateY(-3px);
    }
    .role-button.active span {
        color: white;
    }
    .role-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 18px;
        color: #64748b;
        position: relative;
    }
    .role-divider::before, .role-divider::after {
        content: '';
        height: 2px;
        width: 20px;
        background: #e2e8f0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .role-divider::before {
        left: -25px;
    }
    .role-divider::after {
        right: -25px;
    }
    
    /* Responsive styles */
    @media (max-width: 768px) {
        .role-selection-buttons {
            flex-direction: column;
            gap: 20px;
        }
        .role-divider {
            margin: 5px 0;
            width: 100%;
            justify-content: center;
        }
        .role-divider::before, .role-divider::after {
            width: 60px;
        }
        .role-divider::before {
            left: 20%;
        }
        .role-divider::after {
            right: 20%;
        }
        .role-description {
            height: auto;
            max-height: 80px;
        }
    }
    
    @media (max-width: 480px) {
        .role-option {
            padding: 20px 10px;
        }
        .role-name {
            font-size: 18px;
        }
        .role-button {
            padding: 10px 20px;
        }
    }
    /* Back to role selection link style */
    .back-link {
        display: inline-flex;
        align-items: center;
        color: #64748b;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        margin-bottom: 20px;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .back-link:hover {
        color: #3b82f6;
    }
    .back-link i {
        margin-right: 8px;
        font-size: 16px;
    }
    .signup-login-area {
    display: flex;
    flex-direction: row;
    min-height: 100vh; /* Full viewport height */
    overflow: hidden; /* Prevent outer container from scrolling */
}

/* Make the left section scrollable */
.signup-login-left {
    flex: 1; /* Take available space */
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 100vh; /* Restrict height to viewport */
    padding: 20px; /* Optional: Add padding for better spacing */
}

/* Ensure the right section (banner) doesn’t interfere */
.login-right {
    flex: 1; /* Take available space */
    position: relative; /* Ensure banner image behaves */
    max-height: 100vh; /* Restrict height to viewport */
}

/* Ensure the form container doesn’t overflow improperly */
.signup-form-container {
    display: flex;
    flex-direction: column;
    min-height: 0; /* Prevent overflow issues in flex children */
}

/* Optional: Ensure the body doesn’t scroll unnecessarily */
body {
    margin: 0;
}
.signup-remember-me input
{
    position: relative;
    top:3px;
}
@media(max-width:767px)
{
    .signup-login-left
    {
        margin-top: 0 !important;
        max-height: 100% !important;
    }
    .signup-remember-me input
    {
        width: 16px !important;
        min-width: 16px !important;
        height: 16px !important; 
        position: relative;
        top:2px;  
    }
    .eye-toggle
    {
        top: 46px !important;
    }
    .signup-form-container
    {
        padding-top: 10px !important;
        margin-bottom: 15px !important;
    }
    .signup-login-area
    {
        min-height: auto !important;
    }
    .signup-form
    {
        max-width: 100%;
        margin: 0 auto;
        min-width: 95%;
    }
    .signup-input-container .signup-label
    {
        line-height: 26px;
    }
    .signup-login-left .signup-pera
    {
        margin-bottom: 3rem !important;
    }
}
 @media only screen 
    and (min-device-width: 768px) 
    and (max-device-width: 1024px) 
    and (orientation: portrait) 
    and (-webkit-min-device-pixel-ratio: 1) 
{
    .signup-login-left
    {
        margin-top: 0 !important;
    }
    .signup-login-area
    {
        min-height: 75vh;
    }
    .login-right, .signup-login-left
    {
        max-height: 75vh;
    }
    .signup-login-left .signin
    {
        font-size: 30px !important;
        line-height: 40px !important;
    }
    .signup-form-container
    {
        padding:10px 35px !important; 
    }
    .signup-login-left .signup-pera
    {
        font-size: 16px !important;
    }
    .role-option .role-icon
    {
        font-size: 26px !important;
    }
    .role-option .role-question
    {
        font-size: 15px !important;
    }
    .role-name
    {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    .signup-input-container .signup-label
    {
        line-height: 26px;
    }
    .signup-remember-me input
    {
        position: relative;
        top: 2px;
        min-width: 15px;
        min-height: 15px;
    }
  
}
 @media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1) 
{
    .signup-login-area
    {
        min-height: 85vh;
    }
    .login-right, .signup-login-left
    {
        max-height: 85vh;
    }
    .signup-login-left .signin
    {
        font-size: 30px !important;
        line-height: 40px !important;
    }
    .signup-form-container
    {
        padding:10px 35px !important; 
    }
    .signup-login-left .signup-pera
    {
        font-size: 16px !important;
    }
    .role-option .role-icon
    {
        font-size: 26px !important;
    }
    .role-option .role-question
    {
        font-size: 15px !important;
    }
    .role-name
    {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    .signup-input-container .signup-label
    {
        line-height: 26px;
    }

    .role-selection-buttons
    {
        flex-direction: column !important;
    }
    .role-description
    {
        height: auto !important;
    }
    .form-group-flex
    {
         flex-direction: column !important;
    }
      .signup-remember-me input
    {
        position: relative;
        top: 2px;
        min-width: 15px;
        min-height: 15px;
    }
}
  @media only screen 
  and (min-device-width: 820px)
  and (max-device-width: 820px)
  and (orientation: portrait)
  and (-webkit-min-device-pixel-ratio: 2) 
{
     .signup-login-area
    {
        min-height: 85vh;
    }
    .login-right, .signup-login-left
    {
        max-height: 85vh;
    }
    .signup-login-left .signin
    {
        font-size: 30px !important;
        line-height: 40px !important;
    }
    .signup-form-container
    {
        padding:10px 35px !important; 
    }
    .signup-login-left .signup-pera
    {
        font-size: 16px !important;
    }
    .role-option .role-icon
    {
        font-size: 26px !important;
    }
    .role-option .role-question
    {
        font-size: 15px !important;
    }
    .role-name
    {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    .signup-input-container .signup-label
    {
        line-height: 26px;
    }

    .role-selection-buttons
    {
        flex-direction: column !important;
    }
    .role-description
    {
        height: auto !important;
    }
    .form-group-flex
    {
         flex-direction: column !important;
    }
      .signup-remember-me input
    {
        position: relative;
        top: 2px;
        min-width: 15px;
        min-height: 15px;
    }

}
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1300px) 
 {
     .signup-login-area
    {
        min-height: 85vh;
    }
    .login-right, .signup-login-left
    {
        max-height: 85vh;
    }
    .signup-login-left .signin
    {
        font-size: 30px !important;
        line-height: 40px !important;
    }
    .signup-form-container
    {
        padding:10px 35px !important; 
    }
    .signup-login-left .signup-pera
    {
        font-size: 16px !important;
    }
    .role-option .role-icon
    {
        font-size: 26px !important;
    }
    .role-option .role-question
    {
        font-size: 15px !important;
    }
    .role-name
    {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    .signup-input-container .signup-label
    {
        line-height: 26px;
    }

    .role-selection-buttons
    {
        flex-direction: column !important;
    }
    .role-description
    {
        height: auto !important;
    }
    .form-group-flex
    {
         flex-direction: column !important;
    }
      .signup-remember-me input
    {
        position: relative;
        top: 2px;
        min-width: 15px;
        min-height: 15px;
    }
 }
