/* ================================================
   AUTH PAGES - Login & Register Styles
   Pambify Internal Tool
   ================================================ */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle animated background pattern */
.auth-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(53, 122, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
    animation: authBgShift 20s ease-in-out infinite;
}

@keyframes authBgShift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-2%, -1%);
    }
}

.auth-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header .logo {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-header .logo-text {
    font-size: 28px;
    font-weight: 800;
    color: #357AFF;
    text-transform: lowercase;
}

.auth-header .logo-subtitle {
    font-size: 9px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.auth-header p {
    color: #64748b;
    font-size: 15px;
}

.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
    text-decoration: none;
}

.btn-google:hover {
    border-color: #357AFF;
    box-shadow: 0 4px 12px rgba(53, 122, 255, 0.12);
    transform: translateY(-1px);
}

.divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider span {
    background: #ffffff;
    color: #94a3b8;
    padding: 0 16px;
    font-size: 13px;
    position: relative;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
}

.link-primary {
    color: #357AFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.link-primary:hover {
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.auth-footer p {
    color: #94a3b8;
    font-size: 13px;
}