/* ============================================
   AstionLiterário - Login Page Styles
   Prefixo: lit-login
   ============================================ */

.lit-login-page {
    min-height: 100vh;
    display: flex;
}

/* Banner lateral */
.lit-login__banner {
    display: none;
    width: 50%;
    background: linear-gradient(135deg, var(--lit-bg-primary) 0%, #1a1a3e 50%, var(--lit-primary) 100%);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .lit-login__banner {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.lit-login__banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    animation: lit-pulse 10s ease-in-out infinite;
}

@keyframes lit-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.lit-login__banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 420px;
}

.lit-login__banner-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.lit-login__banner-title {
    font-family: var(--lit-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--lit-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lit-login__banner-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.lit-login__banner-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lit-login__banner-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--lit-radius-md);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    backdrop-filter: blur(4px);
}

.lit-login__banner-feature span:first-child {
    font-size: 1.25rem;
}

/* Seção do formulário */
.lit-login__form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: var(--lit-bg-secondary);
}

.lit-login__form-container {
    width: 100%;
    max-width: 420px;
}

.lit-login__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.lit-login__logo img {
    width: 48px;
    height: 48px;
}

.lit-login__logo-text {
    font-family: var(--lit-font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--lit-primary) 0%, var(--lit-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lit-login__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--lit-text-primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.lit-login__subtitle {
    color: var(--lit-text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.lit-login__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lit-login__remember {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lit-login__forgot {
    font-size: 0.9rem;
    color: var(--lit-primary-light);
}

.lit-login__forgot:hover {
    text-decoration: underline;
}

.lit-login__divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--lit-text-muted);
    font-size: 0.9rem;
}

.lit-login__divider::before,
.lit-login__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--lit-border);
}

.lit-login__footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--lit-text-secondary);
}

.lit-login__footer a {
    color: var(--lit-primary-light);
    font-weight: 500;
}

.lit-login__footer a:hover {
    text-decoration: underline;
}

/* Social buttons */
.lit-login__social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lit-login__social .lit-btn {
    flex: 1;
}
