/* Awardollar auth pages */
body.aw-auth-body {
    background: #070b14 !important;
    min-height: 100vh;
}

body.aw-auth-body .body-overlay-bg {
    display: none;
}

.aw-auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.aw-auth-brand {
    position: relative;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse 80% 70% at 20% 20%, rgba(139, 92, 246, 0.35), transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(34, 211, 238, 0.2), transparent 50%),
        #0a0f1a;
}

.aw-auth-brand-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(139, 92, 246, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.aw-auth-brand-inner {
    position: relative;
    z-index: 2;
    max-width: 480px;
}

.aw-auth-brand .aw-logo {
    max-width: 200px;
    margin-bottom: 32px;
}

.aw-auth-brand h1 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #f8fafc;
}

.aw-auth-brand h1 span {
    background: linear-gradient(135deg, #a78bfa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aw-auth-brand > .aw-auth-brand-inner > p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 28px;
}

.aw-auth-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aw-auth-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 14px;
    padding: 10px 0;
}

.aw-auth-features li i {
    color: #22d3ee;
    width: 20px;
}

.aw-auth-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
}

.aw-auth-card {
    width: 100%;
    max-width: 440px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.aw-auth-card.aw-auth-card-wide {
    max-width: 720px;
}

.aw-auth-card-header {
    text-align: center;
    margin-bottom: 28px;
}

.aw-auth-card-header .aw-logo-mobile {
    display: none;
    max-width: 160px;
    margin: 0 auto 20px;
}

.aw-auth-card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f1f5f9;
}

.aw-auth-card-header p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.aw-auth-field {
    margin-bottom: 18px;
}

.aw-auth-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 8px;
}

.aw-auth-input-wrap {
    position: relative;
}

.aw-auth-input-wrap i.field-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

.aw-auth-input-wrap i.field-icon.eye-toggle {
    pointer-events: auto;
    cursor: pointer;
}

.aw-auth-input-wrap i.field-icon.eye-toggle:hover {
    color: #a78bfa;
}

.aw-auth-input-wrap input,
.aw-auth-input-wrap select {
    width: 100%;
    background: #0b1220;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 10px;
    color: #f1f5f9;
    padding: 13px 42px 13px 14px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.aw-auth-input-wrap input:focus,
.aw-auth-input-wrap select:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.aw-auth-input-wrap .input-group-text {
    background: #1e293b;
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: #94a3b8;
    border-radius: 10px 0 0 10px;
}

.aw-auth-input-wrap .input-group input {
    border-radius: 0 10px 10px 0;
    border-left: none;
}

.aw-auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 13px;
}

.aw-auth-row a {
    color: #a78bfa;
    text-decoration: none;
}

.aw-auth-row a:hover {
    color: #c4b5fd;
}

.aw-auth-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
}

.aw-auth-check input {
    margin-top: 3px;
    accent-color: #8b5cf6;
}

.aw-auth-check a {
    color: #a78bfa;
}

.aw-auth-submit {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.aw-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    color: #fff;
}

.aw-auth-footer {
    text-align: center;
    margin-top: 22px;
    font-size: 14px;
    color: #94a3b8;
}

.aw-auth-footer a {
    color: #c4b5fd;
    font-weight: 600;
    text-decoration: none;
}

.aw-auth-legal {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
}

.aw-auth-legal a {
    color: #94a3b8;
}

.aw-auth-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 20px;
}

.aw-auth-back:hover {
    color: #e2e8f0;
}

.aw-auth-card .alert {
    font-size: 13px;
    margin-bottom: 18px;
}

.aw-auth-card .alert-success {
    background: rgba(52, 211, 153, 0.12);
    border-color: rgba(52, 211, 153, 0.35);
    color: #a7f3d0;
}

@media (max-width: 991px) {
    .aw-auth-page {
        grid-template-columns: 1fr;
    }

    .aw-auth-brand {
        display: none;
    }

    .aw-auth-card-header .aw-logo-mobile {
        display: block;
    }

    .aw-auth-form-side {
        padding: 24px 16px 40px;
    }

    .aw-auth-card {
        padding: 28px 22px;
    }
}
