/* ==========================================================================
   auth.css — Estilos Específicos para a Página de Login
   ========================================================================== */

.auth-layout {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
}

/* Background Effects */
.auth-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape-1 {
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,163,78,0.12) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.shape-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(226,195,110,0.08) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(50px);
}

.auth-logo-mark {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: block;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    z-index: 10;
    animation: authSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.auth-card {
    padding: 2.5rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@keyframes authSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
