   
    /* ================================
       Auth - Modern Turquoise Design
       ================================ */

    #hero.auth-modern {
        min-height: 650px;
        padding: 70px 15px;
        background:
            radial-gradient(circle at 10% 20%, rgba(20, 184, 166, .10), transparent 30%),
            radial-gradient(circle at 90% 80%, rgba(13, 148, 136, .10), transparent 30%),
            #f6fbfa;
        direction: rtl;
    }

    .auth-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }

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

    .auth-brand-icon {
        width: 68px;
        height: 68px;
        margin: 0 auto 15px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #0f766e, #14b8a6);
        color: #fff;
        font-size: 28px;
        box-shadow: 0 12px 30px rgba(20, 184, 166, .25);
    }

    .auth-brand h3 {
        margin: 0 0 7px;
        font-size: 25px;
        font-weight: 800;
        color: #134e4a;
    }

    .auth-brand p {
        margin: 0;
        color: #64748b;
        font-size: 14px;
    }

    .auth-card {
        background: rgba(255, 255, 255, .96);
        border: 1px solid rgba(20, 184, 166, .14);
        border-radius: 24px;
        overflow: hidden;
        box-shadow:
            0 20px 60px rgba(15, 118, 110, .10),
            0 5px 20px rgba(0, 0, 0, .04);
        transition: .3s ease;
    }

    .auth-card:hover {
        box-shadow:
            0 25px 70px rgba(15, 118, 110, .14),
            0 5px 20px rgba(0, 0, 0, .05);
    }

    .auth-card-header {
        position: relative;
        padding: 25px 28px;
        color: #fff;
        background: linear-gradient(135deg, #0f766e, #0d9488, #14b8a6);
        overflow: hidden;
    }

    .auth-card-header::after {
        content: "";
        position: absolute;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .08);
        left: -40px;
        top: -70px;
    }

    .auth-card-header h5 {
        position: relative;
        z-index: 2;
        margin: 0;
        color: #fff;
        font-size: 20px;
        font-weight: 800;
    }

    .auth-card-header p {
        position: relative;
        z-index: 2;
        margin: 7px 0 0;
        color: rgba(255, 255, 255, .85);
        font-size: 13px;
    }

    .auth-card-body {
        padding: 30px;
    }

    .auth-form-group {
        margin-bottom: 22px;
    }

    .auth-form-group label {
        display: block;
        margin-bottom: 9px;
        color: #334155;
        font-size: 14px;
        font-weight: 700;
    }

    .auth-input {
        width: 100%;
        height: 52px;
        border: 1px solid #dbe7e5;
        border-radius: 13px;
        padding: 0 16px;
        background: #faffff;
        color: #1e293b;
        font-size: 15px;
        outline: none;
        transition: .25s ease;
        direction: rtl;
    }

    .auth-input:focus {
        border-color: #14b8a6;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(20, 184, 166, .10);
    }

    .auth-input::placeholder {
        color: #94a3b8;
    }

    .auth-error {
        margin-top: 7px;
        font-size: 12px;
        color: #dc2626;
    }

    .auth-primary-btn,
    .auth-warning-btn,
    .auth-info-btn {
        height: 52px;
        border: 0;
        border-radius: 13px;
        font-weight: 800;
        font-size: 14px;
        transition: .25s ease;
    }

    .auth-primary-btn {
        color: #fff;
        background: linear-gradient(135deg, #0f766e, #14b8a6);
        box-shadow: 0 8px 20px rgba(20, 184, 166, .20);
    }

    .auth-primary-btn:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(20, 184, 166, .28);
    }

    .auth-warning-btn {
        color: #fff;
        background: linear-gradient(135deg, #0d9488, #14b8a6);
    }

    .auth-warning-btn:hover,
    .auth-info-btn:hover {
        color: #fff;
        transform: translateY(-2px);
    }

    .auth-info-btn {
        color: #0f766e;
        background: #e6fffb;
        border: 1px solid #99f6e4;
    }

    .auth-footer {
        padding: 20px 25px;
        background: #f8fdfc;
        border-top: 1px solid #edf5f3;
        display: flex;
        gap: 10px;
    }

    .auth-footer-btn {
        height: 46px;
        border-radius: 11px;
        font-size: 13px;
        font-weight: 700;
        flex: 1;
        transition: .25s ease;
    }

    .auth-signup {
        color: #0f766e;
        background: #ecfdf9;
        border: 1px solid #99f6e4;
    }

    .auth-signup:hover {
        color: #fff;
        background: #0f766e;
    }

    .auth-forgot {
        color: #475569;
        background: #fff;
        border: 1px solid #dbe7e5;
    }

    .auth-forgot:hover {
        color: #0f766e;
        border-color: #14b8a6;
        background: #f0fdfa;
    }

    .otp-box {
        text-align: center;
    }

    .otp-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto 18px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ccfbf1;
        color: #0f766e;
        font-size: 27px;
    }

    .otp-description {
        color: #64748b;
        font-size: 13px;
        margin-bottom: 25px;
        line-height: 1.8;
    }

    .otp-input {
        text-align: center;
        direction: ltr;
        letter-spacing: 8px;
        font-size: 21px;
        font-weight: 800;
    }

    .otp-actions {
        display: flex;
        gap: 10px;
        margin-top: 25px;
    }

    .otp-actions > * {
        flex: 1;
    }

    .otp-timer-box {
        min-width: 80px;
        height: 52px;
        padding: 0 10px;
        border-radius: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f0fdfa;
        border: 1px solid #ccfbf1;
        color: #0f766e;
        font-size: 13px;
        font-weight: 800;
    }

    .auth-loading {
        opacity: .65;
        pointer-events: none;
    }

    /* Livewire Validation */
    .auth-input.is-invalid {
        border-color: #ef4444;
        background: #fffafa;
    }

    /* Responsive */
    @media (max-width: 575px) {

        #hero.auth-modern {
            padding: 40px 12px;
            min-height: 550px;
        }

        .auth-card {
            border-radius: 20px;
        }

        .auth-card-header {
            padding: 22px;
        }

        .auth-card-body {
            padding: 23px 20px;
        }

        .auth-footer {
            padding: 17px;
        }

        .auth-brand h3 {
            font-size: 22px;
        }

        .otp-actions {
            flex-direction: column;
        }

        .otp-timer-box {
            width: 100%;
        }
    }

    .auth-format{
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif !important;
    }
