/* ============================================
   LOGIN PREMIUM v3 — Sistema Blessed
   Split-Screen 60/40 | Darker Black + More Animations
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #050505;
    --black-deep: #020202;
    --black-mid: #0A0A0A;
    --black-soft: #111111;
    --black-card: #161616;
    --white: #FFFFFF;
    --white-off: #F9F9F9;
    --gold: #D4AF37;
    --gold-light: #F4D35E;
    --gold-dark: #B8960C;
    --gold-dim: rgba(212, 175, 55, 0.15);
    --gray-border: #E8E8E8;
    --gray-text: #6B6B6B;
    --gray-light: #999999;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--black-deep);
    color: var(--black);
}

/* === SPLIT LAYOUT === */
.login-split {
    display: flex;
    width: 100%;
    height: 100vh;
    position: relative;
}

/* =============================================
   LEFT SIDE — DEEP BLACK + GOLD
   ============================================= */
.login-left {
    width: 60%;
    height: 100%;
    background: var(--black-deep);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Multi-layer gradient base */
.login-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 40%, rgba(212, 175, 55, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 25%, rgba(212, 175, 55, 0.04) 0%, transparent 45%),
        radial-gradient(ellipse at 40% 85%, rgba(184, 150, 12, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 60%, rgba(5, 5, 5, 0.8) 0%, transparent 70%),
        linear-gradient(160deg, var(--black-deep) 0%, var(--black-mid) 40%, #080808 100%);
    z-index: 1;
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.92; }
}

/* === ABSTRACT CURVES — Layer 1 (back, ghost) === */
.curve-layer-1 {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.12;
    animation: driftSlow 25s ease-in-out infinite;
}

@keyframes driftSlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(5px, -8px) rotate(0.5deg); }
    66% { transform: translate(-3px, 5px) rotate(-0.3deg); }
}

.curve-layer-1 svg {
    width: 100%;
    height: 100%;
}

/* === ABSTRACT CURVES — Layer 2 (mid, subtle) === */
.curve-layer-2 {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.2;
    animation: driftMid 20s ease-in-out infinite;
}

@keyframes driftMid {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-8px, 6px) scale(1.01); }
}

.curve-layer-2 svg {
    width: 100%;
    height: 100%;
}

/* === ABSTRACT CURVES — Layer 3 (front, gold glow) === */
.curve-layer-3 {
    position: absolute;
    inset: 0;
    z-index: 4;
    animation: driftFront 18s ease-in-out infinite;
}

@keyframes driftFront {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(4px, -4px); }
    50% { transform: translate(-2px, 3px); }
    75% { transform: translate(3px, -2px); }
}

.curve-layer-3 svg {
    width: 100%;
    height: 100%;
}

/* === GOLD GLOW SPOTS === */
.glow-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 2;
    animation: pulseGlow 6s ease-in-out infinite;
}

.glow-spot-1 {
    width: 500px;
    height: 500px;
    background: rgba(212, 175, 55, 0.06);
    top: 5%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.glow-spot-2 {
    width: 350px;
    height: 350px;
    background: rgba(212, 175, 55, 0.04);
    bottom: 15%;
    left: 35%;
    animation-delay: 2.5s;
    animation-duration: 7s;
}

.glow-spot-3 {
    width: 280px;
    height: 280px;
    background: rgba(244, 211, 94, 0.03);
    top: 55%;
    left: 5%;
    animation-delay: 4s;
    animation-duration: 9s;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* === FLOATING PARTICLES === */
.particles-left {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

/* Gold particles with varying sizes and speeds */
.particle:nth-child(1)  { left: 5%;  width: 2px; height: 2px; background: var(--gold); animation-duration: 20s; animation-delay: 0s; }
.particle:nth-child(2)  { left: 12%; width: 3px; height: 3px; background: var(--gold-light); animation-duration: 24s; animation-delay: 3s; }
.particle:nth-child(3)  { left: 20%; width: 2px; height: 2px; background: var(--gold); animation-duration: 16s; animation-delay: 1s; }
.particle:nth-child(4)  { left: 28%; width: 4px; height: 4px; background: var(--gold); animation-duration: 22s; animation-delay: 5s; }
.particle:nth-child(5)  { left: 35%; width: 2px; height: 2px; background: var(--gold-light); animation-duration: 18s; animation-delay: 2s; }
.particle:nth-child(6)  { left: 42%; width: 3px; height: 3px; background: var(--gold); animation-duration: 25s; animation-delay: 4s; }
.particle:nth-child(7)  { left: 50%; width: 2px; height: 2px; background: var(--gold-light); animation-duration: 17s; animation-delay: 0.5s; }
.particle:nth-child(8)  { left: 58%; width: 3px; height: 3px; background: var(--gold); animation-duration: 21s; animation-delay: 3.5s; }
.particle:nth-child(9)  { left: 65%; width: 2px; height: 2px; background: var(--gold); animation-duration: 26s; animation-delay: 1.5s; }
.particle:nth-child(10) { left: 72%; width: 4px; height: 4px; background: var(--gold-light); animation-duration: 15s; animation-delay: 6s; }
.particle:nth-child(11) { left: 80%; width: 2px; height: 2px; background: var(--gold); animation-duration: 23s; animation-delay: 2.5s; }
.particle:nth-child(12) { left: 88%; width: 3px; height: 3px; background: var(--gold-light); animation-duration: 19s; animation-delay: 7s; }
.particle:nth-child(13) { left: 15%; width: 2px; height: 2px; background: var(--gold); animation-duration: 28s; animation-delay: 4.5s; }
.particle:nth-child(14) { left: 55%; width: 3px; height: 3px; background: var(--gold); animation-duration: 14s; animation-delay: 1.2s; }
.particle:nth-child(15) { left: 45%; width: 2px; height: 2px; background: var(--gold-light); animation-duration: 30s; animation-delay: 8s; }

@keyframes particleFloat {
    0% {
        transform: translateY(105vh) translateX(0) scale(0);
        opacity: 0;
    }
    3% {
        opacity: 0.6;
        transform: translateY(95vh) translateX(2px) scale(1);
    }
    25% {
        opacity: 0.3;
        transform: translateY(75vh) translateX(-3px) scale(1);
    }
    50% {
        opacity: 0.15;
        transform: translateY(50vh) translateX(4px) scale(0.8);
    }
    75% {
        opacity: 0.08;
        transform: translateY(25vh) translateX(-2px) scale(0.6);
    }
    95% {
        opacity: 0;
    }
    100% {
        transform: translateY(-5vh) translateX(0) scale(0);
        opacity: 0;
    }
}

/* === LEFT SIDE CONTENT === */
.left-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem;
    max-width: 500px;
}

/* Staggered entrance animation */
.left-content .brand-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 2.5rem;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.3),
        0 25px 70px rgba(212, 175, 55, 0.2),
        0 0 120px rgba(212, 175, 55, 0.08);
    animation:
        iconEntrance 0.8s var(--ease-out-expo) 0.2s forwards,
        iconFloat 5s ease-in-out 1s infinite,
        iconGlow 4s ease-in-out infinite;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
}

@keyframes iconEntrance {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(212, 175, 55, 0.3),
            0 25px 70px rgba(212, 175, 55, 0.2),
            0 0 120px rgba(212, 175, 55, 0.08);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(212, 175, 55, 0.5),
            0 30px 80px rgba(212, 175, 55, 0.3),
            0 0 160px rgba(212, 175, 55, 0.12);
    }
}

.left-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
    animation: slideUp 0.8s var(--ease-out-expo) 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.left-content h2 span {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s ease-in-out infinite;
    background-size: 200% 100%;
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.left-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    font-weight: 300;
    animation: slideUp 0.8s var(--ease-out-expo) 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* Decorative line under text */
.left-content::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem auto 0;
    animation: expandLine 1s var(--ease-out-expo) 0.8s forwards;
    opacity: 0;
    transform: scaleX(0);
}

@keyframes expandLine {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* === CURVE SEPARATOR === */
.curve-separator {
    position: absolute;
    right: -2px;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 6;
    pointer-events: none;
}

.curve-separator svg {
    width: 100%;
    height: 100%;
}

/* === RIGHT SIDE — WHITE === */
.login-right {
    width: 40%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 7;
}

/* === LOGIN CARD === */
.login-card {
    width: 100%;
    max-width: 420px;
    padding: 3rem 2.5rem;
}

/* === CARD HEADER — Staggered entrance === */
.card-header {
    margin-bottom: 2rem;
}

.card-header .logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 2rem;
    animation: fadeSlideRight 0.6s var(--ease-out-expo) 0.3s forwards;
    opacity: 0;
    transform: translateX(-15px);
}

@keyframes fadeSlideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card-header .logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.logo-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-header .logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.card-header .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--black);
}

.card-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    animation: fadeSlideRight 0.6s var(--ease-out-expo) 0.45s forwards;
    opacity: 0;
    transform: translateX(-15px);
}

.card-header p {
    font-size: 0.92rem;
    color: var(--gray-text);
    font-weight: 400;
    animation: fadeSlideRight 0.6s var(--ease-out-expo) 0.55s forwards;
    opacity: 0;
    transform: translateX(-15px);
}

/* === FORM — Staggered entrance === */
.login-form .form-group {
    margin-bottom: 1.3rem;
    animation: fadeSlideRight 0.5s var(--ease-out-expo) forwards;
    opacity: 0;
    transform: translateX(-15px);
}

.login-form .form-group:nth-child(1) { animation-delay: 0.6s; }
.login-form .form-group:nth-child(2) { animation-delay: 0.7s; }

.login-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.login-form .form-group:focus-within label {
    color: var(--gold-dark);
}

.login-form .input-wrapper {
    position: relative;
}

.login-form .input-wrapper > i:first-child {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.login-form input[type="email"],
.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    background: var(--white-off);
    border: 1.5px solid var(--gray-border);
    border-radius: 12px;
    color: var(--black);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.35s ease;
    outline: none;
}

.login-form input::placeholder {
    color: var(--gray-light);
    transition: opacity 0.3s ease;
}

.login-form input:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

.login-form input:focus::placeholder {
    opacity: 0.4;
}

.login-form input:focus ~ i {
    color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

/* Input glow bar on focus */
.input-glow {
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.4s var(--ease-out-expo);
    pointer-events: none;
    border-radius: 2px;
}

.login-form input:focus ~ .input-glow {
    width: 90%;
}

/* === PASSWORD TOGGLE === */
.password-toggle {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-light);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.3rem;
    transition: all 0.3s ease;
    z-index: 3;
    border-radius: 8px;
}

.password-toggle:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
}

.password-toggle:active {
    transform: translateY(-50%) scale(0.9);
}

/* === CHECKBOX ROW === */
.form-check-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    animation: fadeSlideRight 0.5s var(--ease-out-expo) 0.8s forwards;
    opacity: 0;
    transform: translateX(-15px);
}

.form-check-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check-custom input[type="checkbox"] {
    width: 17px;
    height: 17px;
    border: 1.5px solid var(--gray-border);
    border-radius: 5px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}

.form-check-custom input[type="checkbox"]:checked {
    background: var(--gold);
    border-color: var(--gold);
    animation: checkBounce 0.4s var(--ease-out-expo);
}

@keyframes checkBounce {
    0% { transform: scale(1); }
    40% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-check-custom input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--black-deep);
    font-size: 0.65rem;
    font-weight: bold;
}

.form-check-custom input[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-check-custom label {
    font-size: 0.82rem;
    color: var(--gray-text);
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
    transition: color 0.2s ease;
}

.form-check-custom label:hover {
    color: var(--black);
}

.forgot-link {
    font-size: 0.82rem;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.forgot-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out-expo);
}

.forgot-link:hover {
    color: var(--gold);
}

.forgot-link:hover::after {
    width: 100%;
}

/* === SUBMIT BUTTON === */
.btn-submit {
    width: 100%;
    padding: 0.95rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 12px;
    color: var(--black-deep);
    font-size: 0.92rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    animation: fadeSlideRight 0.5s var(--ease-out-expo) 0.9s forwards;
    opacity: 0;
    transform: translateX(-15px);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-submit:hover {
    transform: translateY(-3px) translateX(0);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:active {
    transform: translateY(-1px) translateX(0);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-submit i {
    font-size: 1.15rem;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* === DIVIDER === */
.login-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    animation: fadeIn 0.5s ease 1s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-border), transparent);
}

.login-divider span {
    font-size: 0.72rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* === ALERTS === */
.login-alert {
    padding: 0.75rem 1rem;
    background: #FFF5F5;
    border: 1px solid #FED7D7;
    border-radius: 10px;
    color: #C53030;
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: shakeX 0.5s ease, fadeInDown 0.4s ease;
}

@keyframes shakeX {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-4px); }
    40%, 80% { transform: translateX(4px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-success {
    padding: 0.75rem 1rem;
    background: #F0FFF4;
    border: 1px solid #C6F6D5;
    border-radius: 10px;
    color: #276749;
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInDown 0.4s ease;
}

/* === VALIDATION === */
.is-invalid {
    border-color: #C53030 !important;
    animation: shakeInput 0.4s ease;
}

@keyframes shakeInput {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.1) !important;
}

.invalid-feedback {
    color: #C53030;
    font-size: 0.78rem;
    margin-top: 0.35rem;
    display: block;
}

/* === FOOTER === */
.card-footer-text {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.73rem;
    color: var(--gray-light);
    animation: fadeIn 0.5s ease 1.1s forwards;
    opacity: 0;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
    .login-left { width: 50%; }
    .login-right { width: 50%; }
    .left-content h2 { font-size: 2.1rem; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
    .login-split {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .login-left {
        width: 100%;
        height: 38vh;
        min-height: 300px;
    }

    .left-content {
        padding: 1.5rem;
    }

    .left-content .brand-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        margin-bottom: 1.2rem;
    }

    .left-content h2 {
        font-size: 1.6rem;
    }

    .left-content p {
        font-size: 0.85rem;
    }

    .left-content::after {
        display: none;
    }

    .curve-separator { display: none; }

    .login-right {
        width: 100%;
        flex: 1;
    }

    html, body { overflow: auto; }

    .login-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .login-left { height: 32vh; min-height: 250px; }
    .card-header h1 { font-size: 1.5rem; }
    .login-card { padding: 1.5rem 1.25rem; }
}
