/* Web Auth Pages themed to Bento Pro system style */
.auth-web-body {
    margin: 0;
    min-height: 100vh;
    background: #0a0a0a;
    color: #ffffff;
    font-family: 'Inter', 'Cairo', system-ui, -apple-system, sans-serif;
    position: relative;
    /* Low opacity radial overlays in opposite corners */
    background-image:
        radial-gradient(circle at 10% 10%, rgba(249, 164, 116, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(195, 163, 255, 0.02) 0%, transparent 50%);
}

.auth-web-wrapper {
    display: flex;
    min-height: 100vh;
}

.auth-web-visual {
    flex: 1;
    background-color: #0d0d0d;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    color: #fff;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-web-visual::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 164, 116, 0.05) 0%, transparent 70%);
    filter: blur(100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.auth-visual-content {
    position: relative;
    z-index: 1;
    max-width: 480px;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
}

.auth-brand span {
    background: linear-gradient(135deg, #F9A474 0%, #FCD2B7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-brand img {
    height: 44px;
    width: 44px;
    object-fit: contain;
}

.auth-visual-content h1 {
    font-family: 'Inter Tight', 'Cairo', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #ffffff;
}

.auth-visual-content p {
    color: #a1a1aa;
    font-size: 1.05rem;
    line-height: 1.8;
}

.auth-features {
    list-style: none;
    padding: 0;
    margin-top: 2.5rem;
}

.auth-features li {
    padding: 0.65rem 0;
    font-size: 1rem;
    color: #a1a1aa;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-features i {
    color: #F9A474;
}

.auth-web-form-side {
    flex: 0 0 540px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background-color: #0a0a0a;
}

.auth-form-container {
    width: 100%;
    max-width: 420px;
}

.auth-form-header {
    margin-bottom: 2.5rem;
}

.auth-form-header h2 {
    font-family: 'Inter Tight', 'Cairo', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.auth-form-header p {
    color: #a1a1aa;
    margin: 0;
}

.auth-form .form-label {
    font-weight: 500;
    color: #a1a1aa;
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.auth-form .form-control {
    padding: 0.8rem 1rem;
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-form .form-control::placeholder {
    color: #71717a;
}

.auth-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: #F9A474;
    box-shadow: 0 0 15px rgba(249, 164, 116, 0.15);
    outline: none;
}

.auth-submit-btn {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, #F9A474 0%, #F7B38E 55%, #FCD2B7 100%);
    border: none;
    border-radius: 32px;
    color: #1A120D !important;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(249, 164, 116, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-submit-btn:hover {
    background: linear-gradient(135deg, #F39A67 0%, #F9A474 55%, #F7B38E 100%);
    box-shadow: 0 6px 14px rgba(249, 164, 116, 0.3);
    transform: translateY(-1px);
}

.auth-switch-link {
    text-align: center;
    margin-top: 2rem;
    color: #71717a;
}

.auth-switch-link a {
    color: #F9A474;
    font-weight: 600;
    text-decoration: none;
}

.auth-switch-link a:hover {
    color: #FCD2B7;
    text-decoration: underline;
}

.auth-back-link {
    color: #F9A474;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.3s ease;
}

.auth-back-link:hover {
    color: #FCD2B7;
    transform: translateX(-3px);
}

@media (max-width: 991px) {
    .auth-web-form-side {
        flex: 1;
        padding: 2rem;
    }
}

@media (max-width: 575.98px) {
    .auth-web-form-side {
        padding: 1.25rem 1rem;
        align-items: flex-start;
    }

    .auth-form-container {
        max-width: 100%;
    }

    .auth-form-header {
        margin-bottom: 1.5rem;
    }

    .auth-form-header h2 {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }

    .auth-form .d-flex {
        flex-wrap: wrap;
        gap: .75rem;
    }

    .auth-back-link,
    .auth-submit-btn,
    .auth-form .form-control {
        min-height: 44px;
    }
}