/**
 * Premium auth UI — split layout, aligns with HRM / Able-inspired palette (#4680ff).
 * Loaded after style.css + hrm-able-pro-theme.css
 */

:root {
    --login-primary: #4680ff;
    --login-primary-dark: #2f5fe6;
    --login-primary-glow: rgba(70, 128, 255, 0.35);
    --login-text: #111827;
    --login-muted: #64748b;
    --login-border: #e2e8f0;
    --login-surface: #ffffff;
    --login-bg-soft: #f1f5f9;
}

body.hrm-able-login {
    margin: 0;
    padding: 0 !important;
    min-height: 100vh;
    display: block !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--login-bg-soft) !important;
    -webkit-font-smoothing: antialiased;
}

/* Full-page shell — wide left, form flush right */
.auth-shell {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 100vh;
    width: 100%;
}

/* Left brand column — grows to fill space (majority of viewport) */
.auth-brand-panel {
    --auth-slide-duration: 24s;
    flex: 1 1 0%;
    min-width: 0;
    max-width: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(2rem, 5vw, 3.75rem);
    color: #fff;
    background: linear-gradient(155deg, #0c1222 0%, #1e3a8a 38%, #2563eb 72%, #1d4ed8 100%);
    overflow: hidden;
}

/* Sliding module ribbon (text) — loops with SVG bars + shimmer */
.auth-marquee {
    overflow: hidden;
    margin: 0.75rem 0 1rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.auth-marquee-inner {
    display: inline-flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: authMarqueeDrift var(--auth-slide-duration) linear infinite;
}

.auth-marquee-seg {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.35rem;
    padding-right: 4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}

.auth-marquee-sep {
    opacity: 0.4;
    font-weight: 400;
    padding: 0 0.15rem;
}

@keyframes authMarqueeDrift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Vertical sliding headlines (duplicate block = seamless loop) */
.auth-slide-headlines {
    height: 2.85rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.auth-slide-headlines-track {
    /* ~72% of ribbon timing — synced rhythm without relying on calc(time) */
    animation: authSlideHeadlinesLoop 17.28s linear infinite;
}

.auth-slide-block {
    padding: 0;
    margin: 0;
}

.auth-slide-line {
    height: 2.85rem;
    line-height: 2.85rem;
    margin: 0;
    padding: 0;
    font-size: 1.06rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes authSlideHeadlinesLoop {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Animated SVG hero layer */
.auth-brand-svg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.auth-brand-svg {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.auth-svg-drift--slow {
    animation: authSvgDriftA 22s ease-in-out infinite;
    transform-origin: 280px 240px;
}

.auth-svg-drift--mid {
    animation: authSvgDriftB 18s ease-in-out infinite -4s;
    transform-origin: 620px 420px;
}

.auth-svg-drift--fast {
    animation: authSvgDriftC 12s ease-in-out infinite -2s;
    transform-origin: 480px 180px;
}

.auth-svg-orbit {
    animation: authSvgSpin 72s linear infinite;
    transform-origin: 0 0;
}

.auth-svg-orbit--inner {
    animation: authSvgSpin 48s linear infinite reverse;
    opacity: 0.85;
}

.auth-svg-node {
    animation: authSvgTwinkle 5s ease-in-out infinite;
}

.auth-svg-node:nth-child(2) {
    animation-delay: -1.2s;
}

.auth-svg-node:nth-child(3) {
    animation-delay: -2.4s;
}

.auth-svg-node:nth-child(4) {
    animation-delay: -3.1s;
}

@keyframes authSvgDriftA {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% {
        transform: translate(28px, -18px) scale(1.06);
        opacity: 0.92;
    }
    66% {
        transform: translate(-16px, 22px) scale(0.97);
        opacity: 1;
    }
}

@keyframes authSvgDriftB {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    40% {
        transform: translate(-36px, 24px) scale(1.05);
    }
    75% {
        transform: translate(20px, -14px) scale(0.98);
    }
}

@keyframes authSvgDriftC {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.18;
    }
    50% {
        transform: translate(14px, 30px) scale(1.15);
        opacity: 0.28;
    }
}

@keyframes authSvgSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes authSvgTwinkle {
    0%, 100% {
        opacity: 0.35;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.35);
    }
}

/* HR module glyphs — gentle bob + glow pulse */
.auth-mod {
    animation: authModBob 14s ease-in-out infinite;
    transform-origin: 0 0;
}

.auth-mod--d0 {
    animation-delay: 0s;
}

.auth-mod--d1 {
    animation-delay: -1.75s;
}

.auth-mod--d2 {
    animation-delay: -3.25s;
}

.auth-mod--d3 {
    animation-delay: -4.6s;
}

.auth-mod--d4 {
    animation-delay: -6s;
}

.auth-mod--d5 {
    animation-delay: -7.4s;
}

.auth-mod--d6 {
    animation-delay: -8.9s;
}

.auth-mod--d7 {
    animation-delay: -10.2s;
}

@keyframes authModBob {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-7px) scale(1.03);
        opacity: 0.92;
    }
}

/* Dashed links between modules — flowing dash */
.auth-link-path {
    stroke-dasharray: 12 22;
    animation: authLinkFlow 22s linear infinite;
}

.auth-link-path:nth-child(2) {
    animation-delay: -4s;
}

.auth-link-path:nth-child(3) {
    animation-delay: -8s;
}

.auth-link-path:nth-child(4) {
    animation-delay: -6s;
}

.auth-link-path:nth-child(5) {
    animation-delay: -10s;
}

.auth-link-path:nth-child(6) {
    animation-delay: -14s;
}

.auth-link-path:nth-child(7) {
    animation-delay: -12s;
}

@keyframes authLinkFlow {
    0% {
        stroke-dashoffset: 0;
        stroke-opacity: 0.35;
    }
    50% {
        stroke-opacity: 0.55;
    }
    100% {
        stroke-dashoffset: -520;
        stroke-opacity: 0.35;
    }
}

/* Floor reflection shimmer */
.auth-modules-reflection {
    animation: authReflectPulse 10s ease-in-out infinite;
}

@keyframes authReflectPulse {
    0%, 100% {
        opacity: 0.48;
    }
    50% {
        opacity: 0.62;
    }
}

.auth-svg-slide-chunk {
    animation: authSvgSlideChunk var(--auth-slide-duration) linear infinite;
}

@keyframes authSvgSlideChunk {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-860px);
    }
}

.auth-svg-shimmer {
    animation: authSvgShimmerSweep var(--auth-slide-duration) linear infinite;
    mix-blend-mode: overlay;
    pointer-events: none;
}

@keyframes authSvgShimmerSweep {
    0% {
        transform: translateX(-280px);
    }
    100% {
        transform: translateX(920px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .auth-svg-drift--slow,
    .auth-svg-drift--mid,
    .auth-svg-drift--fast,
    .auth-svg-orbit,
    .auth-svg-orbit--inner,
    .auth-svg-node,
    .auth-mod,
    .auth-link-path,
    .auth-modules-reflection,
    .auth-svg-shimmer,
    .auth-svg-slide-chunk,
    .auth-marquee-inner,
    .auth-slide-headlines-track {
        animation: none !important;
    }

    .auth-brand-list--fade-cycle.auth-brand-list--spark {
        min-height: 0 !important;
    }

    .auth-brand-list--fade-cycle.auth-brand-list--spark .auth-brand-point {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin-bottom: 0.65rem !important;
        margin-left: -0.45rem !important;
    }

    .auth-brand-list--fade-cycle.auth-brand-list--spark .auth-brand-point:last-child {
        margin-bottom: 0 !important;
    }

    .auth-form-perks--fade {
        min-height: 0 !important;
    }

    .auth-form-perks--fade .auth-form-perk {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin-bottom: 0.45rem !important;
        padding: 0.42rem 0.55rem !important;
    }

    .auth-form-perks--fade .auth-form-perk:last-child {
        margin-bottom: 0 !important;
    }
}

.auth-brand-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 90%, rgba(96, 165, 250, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 85% 15%, rgba(59, 130, 246, 0.28) 0%, transparent 45%);
    pointer-events: none;
}

.auth-brand-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.auth-brand-inner {
    position: relative;
    z-index: 2;
}

.auth-brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.auth-brand-title {
    font-size: clamp(1.65rem, 3.2vw, 2.15rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0 0 1rem 0;
    color: #fff;
}

.auth-brand-lead {
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 2rem 0;
    max-width: 28rem;
}

.auth-brand-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.auth-brand-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
}

.auth-brand-list li:last-child {
    margin-bottom: 0;
}

/* Brand bullets — rotate one row at a time with fade in / out */
.auth-brand-list--fade-cycle.auth-brand-list--spark {
    position: relative;
    min-height: 5.25rem;
    margin-bottom: 0;
}

.auth-brand-list--fade-cycle.auth-brand-list--spark .auth-brand-point {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    align-items: center;
    gap: 0.9rem;
    padding: 0.55rem 0.65rem 0.55rem 0.45rem;
    margin: 0 0 0 -0.45rem;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    animation: authBrandPointFadeCycle 21s ease-in-out infinite;
}

.auth-brand-list--fade-cycle.auth-brand-list--spark .auth-brand-point::before {
    content: '';
    position: absolute;
    left: 0.35rem;
    top: 0.65rem;
    bottom: 0.65rem;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(186, 230, 253, 0.95) 0%, rgba(59, 130, 246, 0.55) 100%);
    opacity: 0.9;
}

.auth-brand-list--fade-cycle .auth-brand-point:nth-child(1) {
    animation-delay: 0s;
}

.auth-brand-list--fade-cycle .auth-brand-point:nth-child(2) {
    animation-delay: -3s;
}

.auth-brand-list--fade-cycle .auth-brand-point:nth-child(3) {
    animation-delay: -6s;
}

.auth-brand-list--fade-cycle .auth-brand-point:nth-child(4) {
    animation-delay: -9s;
}

.auth-brand-list--fade-cycle .auth-brand-point:nth-child(5) {
    animation-delay: -12s;
}

.auth-brand-list--fade-cycle .auth-brand-point:nth-child(6) {
    animation-delay: -15s;
}

.auth-brand-list--fade-cycle .auth-brand-point:nth-child(7) {
    animation-delay: -18s;
}

@keyframes authBrandPointFadeCycle {
    /* ~14.29% per bullet (100/7); fade edges share the slot */
    0%, 2% {
        opacity: 0;
        transform: translateY(14px);
    }
    3.5%, 11% {
        opacity: 1;
        transform: translateY(0);
    }
    13.2%, 100% {
        opacity: 0;
        transform: translateY(-12px);
    }
}

.auth-brand-point-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    margin-top: 1px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.14),
        0 6px 18px rgba(0, 0, 0, 0.14);
}

.auth-brand-point-icon .feather {
    width: 18px;
    height: 18px;
    margin: 0;
    opacity: 1;
    color: #e0f2fe;
}

.auth-brand-footer {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

.auth-brand-footer strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

/* Right form column — fixed width, pinned to viewport right */
.auth-form-panel {
    flex: 0 0 auto;
    width: min(460px, 100%);
    max-width: 100vw;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 2.5vw, 1.75rem);
    background: linear-gradient(180deg, #fafbfc 0%, var(--login-bg-soft) 45%, #e8ecf1 100%);
    position: relative;
    border-left: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.06);
}

.auth-form-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 70% 30%, rgba(70, 128, 255, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.login-container {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    z-index: 1;
}

body.hrm-able-login .login-card {
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 2.65rem) clamp(1.65rem, 4vw, 2.35rem);
    border-radius: 20px;
    background: var(--login-surface);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 24px 56px -12px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

body.hrm-able-login .login-card::before {
    height: 4px;
    background: linear-gradient(90deg, var(--login-primary) 0%, #3b82f6 50%, #60a5fa 100%) !important;
    border-radius: 20px 20px 0 0;
}

.login-header {
    margin-bottom: 1.75rem !important;
}

.login-header .logo img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(15, 23, 42, 0.08));
}

.auth-form-intro {
    margin-bottom: 1.75rem;
}

.auth-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--login-text);
    margin: 0 0 0.35rem 0;
}

.auth-form-subtitle {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--login-muted);
    margin: 0;
}

/* Login card — rotating fade (one line at a time; visible on mobile too) */
.auth-form-perks {
    list-style: none;
    margin: 1.05rem 0 0;
    padding: 0;
}

.auth-form-perks--fade {
    position: relative;
    min-height: clamp(3.25rem, 9vw, 4.35rem);
}

.auth-form-perks--fade .auth-form-perk {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.35;
    color: #475569;
    padding: 0.35rem 0.15rem 0.35rem 0;
    border-radius: 10px;
    opacity: 0;
    animation: authFormPerkFadeCycle 16s ease-in-out infinite;
}

.auth-form-perks--fade .auth-form-perk:nth-child(1) {
    animation-delay: 0s;
}

.auth-form-perks--fade .auth-form-perk:nth-child(2) {
    animation-delay: -4s;
}

.auth-form-perks--fade .auth-form-perk:nth-child(3) {
    animation-delay: -8s;
}

.auth-form-perks--fade .auth-form-perk:nth-child(4) {
    animation-delay: -12s;
}

@keyframes authFormPerkFadeCycle {
    /* 25% per item (100/4) */
    0%, 2.5% {
        opacity: 0;
        transform: translateY(12px);
    }
    4%, 19.5% {
        opacity: 1;
        transform: translateY(0);
    }
    22%, 100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.auth-perk-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.38rem;
    height: 1.38rem;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(70, 128, 255, 0.18), rgba(59, 130, 246, 0.06));
    box-shadow: 0 0 0 1px rgba(70, 128, 255, 0.2);
    color: var(--login-primary);
}

.auth-perk-icon .feather {
    width: 12px;
    height: 12px;
}

/* Forgot password page */
.auth-container .auth-title {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--login-text);
    margin: 0 0 0.35rem 0;
}

.auth-container .auth-subtitle {
    font-size: 0.9375rem;
    color: var(--login-muted);
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.auth-footer-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: var(--login-muted);
}

.auth-footer-note kbd {
    font-family: inherit;
    font-weight: 600;
    color: #475569;
}

/* Form polish — align with primary */
body.hrm-able-login .form-group input:focus {
    border-color: var(--login-primary) !important;
    box-shadow: 0 0 0 4px rgba(70, 128, 255, 0.14) !important;
}

body.hrm-able-login .form-group input:focus + label,
body.hrm-able-login .form-group input:not(:placeholder-shown) + label {
    color: var(--login-primary) !important;
}

body.hrm-able-login .forgot-link {
    color: var(--login-primary) !important;
}

body.hrm-able-login .forgot-link:hover {
    color: var(--login-primary-dark) !important;
}

body.hrm-able-login .login-btn {
    background: linear-gradient(180deg, var(--login-primary) 0%, var(--login-primary-dark) 100%) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 14px var(--login-primary-glow);
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}

body.hrm-able-login .login-btn:hover:not(:disabled) {
    background: linear-gradient(180deg, #5a8fff 0%, var(--login-primary) 100%) !important;
    box-shadow: 0 8px 24px rgba(70, 128, 255, 0.42);
    transform: translateY(-1px);
}

body.hrm-able-login .login-btn:active:not(:disabled) {
    transform: translateY(0);
}

/* Checkbox — Bootstrap custom-control on login */
body.hrm-able-login .custom-control-label {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #374151 !important;
    padding-top: 2px;
}

body.hrm-able-login .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--login-primary) !important;
    border-color: var(--login-primary) !important;
}

body.hrm-able-login .custom-checkbox .custom-control-label::before {
    border-radius: 6px;
    border-color: var(--login-border);
}

/* Loading overlay */
#loading-overlay {
    backdrop-filter: blur(6px);
    background: rgba(248, 250, 252, 0.92) !important;
}

#loading-overlay h4 {
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    color: var(--login-muted);
    margin-top: 1rem;
}

/* Mobile — stack; form full width */
@media (max-width: 991px) {
    .auth-shell {
        flex-direction: column;
    }

    .auth-brand-panel {
        --auth-slide-duration: 30s;
        flex: none;
        min-height: 220px;
        max-width: none;
        padding: 1.75rem 1.5rem 1.5rem;
    }

    .auth-brand-svg-wrap {
        opacity: 0.95;
    }

    .auth-module-links {
        opacity: 0.65;
    }

    .auth-slide-headlines-track {
        animation-duration: 21.6s;
    }

    .auth-marquee-seg {
        font-size: 0.7rem;
        padding-right: 2.5rem;
    }

    .auth-brand-lead {
        margin-bottom: 1.25rem;
        font-size: 0.95rem;
    }

    .auth-brand-list {
        display: none;
    }

    .auth-brand-footer {
        padding-top: 1.25rem;
        border-top: none;
    }

    .auth-form-panel {
        flex: 1 1 auto;
        width: 100%;
        margin-left: 0;
        border-left: none;
        box-shadow: none;
        padding: 1.25rem 1rem 2rem;
    }

    .login-container {
        margin-left: auto;
        margin-right: auto;
        max-width: 440px;
    }

    body.hrm-able-login .login-card {
        border-radius: 16px;
        padding: 1.75rem 1.35rem 2rem;
    }
}

@media (max-width: 480px) {
    .auth-brand-title {
        font-size: 1.4rem;
    }

    body.hrm-able-login .login-card {
        padding: 1.5rem 1.15rem 1.75rem;
    }
}
