
    .auth-container {
        padding: 60px 20px;
        max-width: 1100px;
        margin: 0 auto;
        min-height: calc(100vh - 170px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .auth-card {
        display: flex;
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        background: white;
    }

    .auth-banner {
        flex: 1;
        position: relative;
        background-image: url('/assets/img/visa3.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        padding: 40px;
    }

    .auth-banner .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(33, 171, 210, 0.9), rgba(25, 124, 153, 0.95));
        z-index: 1;
    }

    .banner-content {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .banner-content h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .banner-content p {
        font-size: 16px;
        margin-bottom: 30px;
        font-weight: 300;
        line-height: 1.6;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .banner-features {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 15px;
        background: rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
        border-radius: 10px;
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .feature-item i {
        font-size: 24px;
        opacity: 0.9;
    }

    .feature-item span {
        font-weight: 500;
        font-size: 16px;
    }

    .auth-form-container {
        flex: 1;
        padding: 40px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        max-height: 90vh;
    }

    .auth-form-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .auth-logo {
        height: 40px;
        margin-bottom: 20px;
    }

    .auth-form-header h2 {
        font-size: 28px;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
    }

    .auth-form-header p {
        color: #666;
        font-size: 15px;
    }

    .auth-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-row {
        display: flex;
        gap: 15px;
    }

    .form-row .form-group {
        flex: 1;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-group label {
        font-size: 14px;
        font-weight: 500;
        color: #555;
    }

    .input-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .input-wrapper i {
        position: absolute;
        left: 15px;
        color: #999;
        font-size: 16px;
    }

    .input-wrapper input {
        width: 100%;
        padding: 14px 15px 14px 45px;
        border-radius: 8px;
        border: 1px solid #ddd;
        background-color: #f8f9fa;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .input-wrapper input[type="password"] {
        padding-right: 45px;
    }

    .input-wrapper input:focus {
        border-color: #21abd2;
        outline: none;
        background-color: white;
        box-shadow: 0 0 0 3px rgba(33, 171, 210, 0.1);
    }

    .toggle-password {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #9ca3af;
        transition: color 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: transparent;
    }

    .toggle-password:hover {
        color: #555;
        background-color: rgba(0, 0, 0, 0.05);
    }

    .toggle-password i {
        font-size: 14px;
    }

    .terms-checkbox {
        margin-bottom: 5px;
    }

    .custom-checkbox {
        display: flex;
        align-items: flex-start;
        position: relative;
        cursor: pointer;
        user-select: none;
    }

    .custom-checkbox input {
        position: absolute;
        opacity: 0;
        height: 0;
        width: 0;
    }

    .checkmark {
        height: 20px;
        width: 20px;
        flex-shrink: 0;
        background-color: #f8f9fa;
        border: 1px solid #ddd;
        border-radius: 4px;
        margin-right: 10px;
        margin-top: 2px;
        transition: all 0.2s ease;
    }

    .custom-checkbox:hover input~.checkmark {
        background-color: #f0f0f0;
    }

    .custom-checkbox input:checked~.checkmark {
        background-color: #21abd2;
        border-color: #21abd2;
    }

    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
        left: 7px;
        top: 3px;
        width: 6px;
        height: 12px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .custom-checkbox input:checked~.checkmark:after {
        display: block;
    }

    .terms-text {
        font-size: 14px;
        color: #555;
        line-height: 1.5;
    }

    .terms-text a {
        color: #21abd2;
        text-decoration: none;
        font-weight: 500;
    }

    .terms-text a:hover {
        text-decoration: underline;
    }

    .auth-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 14px;
        background-color: #21abd2;
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .auth-button:hover {
        background-color: #1889a7;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(33, 171, 210, 0.2);
    }

    .auth-button:active {
        transform: translateY(0);
    }

    .auth-button:disabled {
        background-color: #79c9e1;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .button-loader {
        display: none;
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: white;
        animation: spin 0.8s linear infinite;
    }

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

        100% {
            transform: rotate(360deg);
        }
    }

    .auth-divider {
        position: relative;
        text-align: center;
        margin: 20px 0;
    }

    .auth-divider:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background-color: #eee;
        z-index: 1;
    }

    .auth-divider span {
        position: relative;
        background-color: white;
        padding: 0 15px;
        font-size: 14px;
        color: #777;
        z-index: 2;
    }

    .auth-secondary-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 12px;
        background-color: #f8f9fa;
        border: 1px solid #ddd;
        border-radius: 8px;
        color: #555;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .auth-secondary-button:hover {
        background-color: #eee;
        border-color: #ccc;
        color: #333;
    }

    .response-container {
        margin-bottom: 20px;
    }

    .response-message {
        padding: 12px 15px;
        border-radius: 8px;
        font-size: 14px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .response-message.success {
        background-color: rgba(47, 214, 137, 0.1);
        color: #2fd689;
        border-left: 3px solid #2fd689;
    }

    .response-message.error {
        background-color: rgba(255, 76, 81, 0.1);
        color: #ff4c51;
        border-left: 3px solid #ff4c51;
    }

    .response-message.success:before {
        content: '\f058';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
    }

    .response-message.error:before {
        content: '\f06a';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
    }

    /* Verification Form Styles */
    .verification-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .verification-icon {
        width: 80px;
        height: 80px;
        background-color: rgba(33, 171, 210, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .verification-icon i {
        font-size: 40px;
        color: #21abd2;
    }

    .verification-container h3 {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
    }

    .verification-container p {
        font-size: 15px;
        color: #666;
        margin-bottom: 25px;
        max-width: 400px;
    }

    .verification-code-container {
        display: flex;
        gap: 12px;
        margin-bottom: 25px;
        justify-content: center;
    }

    .verification-digit {
        width: 60px;
        height: 60px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 24px;
        font-weight: 600;
        text-align: center;
        background-color: #f8f9fa;
        transition: all 0.3s ease;
    }

    .verification-digit:focus {
        border-color: #21abd2;
        box-shadow: 0 0 0 3px rgba(33, 171, 210, 0.1);
        outline: none;
    }

    .verification-timer {
        margin-bottom: 25px;
    }

    .verification-timer p {
        font-size: 14px;
        color: #666;
        margin: 0;
    }

    #countdown {
        font-weight: 600;
        color: #21abd2;
    }

    .resend-code-button {
        background: none;
        border: none;
        color: #21abd2;
        font-size: 15px;
        font-weight: 500;
        padding: 10px;
        margin-top: 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .resend-code-button:not(:disabled):hover {
        color: #1889a7;
        text-decoration: underline;
    }

    .resend-code-button:disabled {
        color: #aaa;
        cursor: not-allowed;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .auth-card {
            flex-direction: column;
            max-width: 600px;
            margin: 0 auto;
        }

        .auth-banner {
            padding: 50px 30px;
        }

        .banner-features {
            flex-direction: row;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .feature-item {
            flex: 0 0 calc(50% - 8px);
        }
    }

    @media (max-width: 767px) {
        .auth-container {
            padding: 30px 15px;
        }

        .auth-banner {
            padding: 40px 20px;
        }

        .form-row {
            flex-direction: column;
            gap: 20px;
        }

        .auth-form-container {
            padding: 30px 20px;
        }

        .verification-digit {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }
    }

    @media (max-width: 480px) {
        .banner-content h2 {
            font-size: 24px;
        }

        .banner-content p {
            font-size: 14px;
        }

        .auth-form-header h2 {
            font-size: 24px;
        }

        .verification-code-container {
            gap: 8px;
        }

        .verification-digit {
            width: 45px;
            height: 45px;
            font-size: 18px;
        }
    }