/* ================================================================
   Login Page Styles - Professional Center-Card Layout
   ================================================================ */

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

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --primary: #002045;
    --primary-container: #1a365d;
    --on-primary: #ffffff;
    --primary-fixed-dim: #adc7f7;
    --primary-fixed: #d6e3ff;
    --on-primary-fixed: #001b3c;
    --on-primary-fixed-variant: #2d476f;

    --secondary: #006b5f;
    --secondary-container: #62fae3;
    --on-secondary: #ffffff;
    --on-secondary-container: #007165;
    --secondary-fixed: #62fae3;
    --secondary-fixed-dim: #3cddc7;
    --on-secondary-fixed: #00201c;
    --on-secondary-fixed-variant: #005047;

    --tertiary: #371800;
    --tertiary-container: #572900;
    --on-tertiary: #ffffff;
    --on-tertiary-fixed: #301400;
    --on-tertiary-fixed-variant: #713700;
    --tertiary-fixed: #ffdcc5;
    --tertiary-fixed-dim: #ffb783;

    --error: #ba1a1a;
    --error-container: #ffdad6;
    --on-error: #ffffff;
    --on-error-container: #93000a;

    --background: #f8f9ff;
    --on-background: #0b1c30;
    --surface: #f8f9ff;
    --surface-bright: #f8f9ff;
    --surface-container: #e5eeff;
    --surface-container-low: #eff4ff;
    --surface-container-lowest: #ffffff;
    --surface-container-high: #dce9ff;
    --surface-container-highest: #d3e4fe;
    --surface-dim: #cbdbf5;
    --surface-variant: #d3e4fe;
    --surface-tint: #455f88;
    --on-surface: #0b1c30;
    --on-surface-variant: #43474e;

    --outline: #74777f;
    --outline-variant: #c4c6cf;

    --shadow-sm: 0 1px 3px rgba(0, 32, 69, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 32, 69, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 32, 69, 0.10);
    --shadow-xl: 0 16px 48px rgba(0, 32, 69, 0.12);

    --container-max: 1120px;
    --gutter: 24px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--on-surface);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========================================
   AMBIENT BACKGROUND ORBS
   ======================================== */
.login-ambient-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.login-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.login-orb-1 {
    width: 50vw;
    height: 50vw;
    top: -15%;
    left: -10%;
    background: var(--surface-container-high);
    opacity: 0.5;
}

.login-orb-2 {
    width: 60vw;
    height: 60vw;
    bottom: -20%;
    right: -10%;
    background: var(--surface-variant);
    opacity: 0.4;
}

.login-orb-3 {
    width: 35vw;
    height: 35vw;
    top: 30%;
    right: 10%;
    background: var(--secondary-container);
    opacity: 0.15;
}

/* ========================================
   LAYOUT CONTAINER
   ======================================== */
.login-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

/* ========================================
   HEADER
   ======================================== */
.login-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(248, 249, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--outline-variant);
}

.login-header .login-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.login-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary);
}

.login-brand-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.login-brand-name {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.login-header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.login-nav-link:hover {
    background: var(--on-primary-fixed-variant);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.login-nav-link i {
    font-size: 13px;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.login-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

.login-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 88px var(--gutter) 48px;
    position: relative;
    z-index: 1;
}

.login-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

/* ========================================
   HERO COLUMN
   ======================================== */
.login-hero-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: center;
    order: 1;
}

.login-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface-container-low);
    border: 1px solid var(--surface-dim);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
}

.login-hero-badge i {
    color: var(--secondary);
}

.login-hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.login-hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--on-surface-variant);
    max-width: 480px;
}

/* Features */
.login-hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    width: 100%;
    max-width: 440px;
}

.login-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--surface-container);
    border-radius: var(--radius-lg);
    text-align: left;
    transition: all 0.2s ease;
}

.login-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
}

.login-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-md);
    background: var(--surface-container);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.login-feature-icon-secondary {
    background: var(--secondary-container);
    color: var(--on-secondary-container);
}

.login-feature-icon-tertiary {
    background: var(--tertiary-fixed-dim);
    color: var(--tertiary);
}

.login-feature-text h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.login-feature-text p {
    font-size: 13px;
    color: var(--on-surface-variant);
    line-height: 1.4;
}

/* ========================================
   LOGIN CARD COLUMN
   ======================================== */
.login-card-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 2;
    position: relative;
}

.login-card-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--primary-container), var(--secondary-container));
    border-radius: var(--radius-xl);
    opacity: 0.18;
    filter: blur(16px);
    z-index: -1;
}

.login-card {
    background: var(--surface-container-lowest);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--surface-container);
    animation: fadeInUp 0.5s ease-out;
}

/* Card Header */
.login-card-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    padding: 10px;
    box-shadow:
        0 0 0 2px rgba(0, 32, 69, 0.08),
        0 4px 20px rgba(0, 32, 69, 0.12),
        inset 0 0 0 1px rgba(0, 32, 69, 0.04);
    overflow: hidden;
}

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

.login-card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.login-card-subtitle {
    font-size: 14px;
    color: var(--on-surface-variant);
    line-height: 1.5;
}

/* ========================================
   LOGIN FORM
   ======================================== */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: fadeIn 0.5s ease-out backwards;
}

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

.login-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--on-surface);
    font-family: 'Inter', sans-serif;
}

.login-form-label i {
    font-size: 14px;
    color: var(--primary);
    width: 16px;
    text-align: center;
}

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

.login-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--outline);
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 1;
}

.login-input {
    width: 100%;
    height: 50px;
    padding: 0 44px 0 44px;
    background: var(--surface);
    border: 1.5px solid var(--outline-variant);
    border-radius: var(--radius-md);
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 14px;
    color: var(--on-surface);
    outline: none;
    transition: all 0.2s ease;
}

.login-input::placeholder {
    color: var(--outline-variant);
}

.login-input:hover:not(:focus) {
    border-color: var(--primary);
}

.login-input:focus {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 0 0 3px rgba(0, 32, 69, 0.12);
    padding-left: 43px;
}

.login-form-group.focused .login-input-icon {
    color: var(--primary);
}

/* Password toggle */
.login-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--outline);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.login-password-toggle:hover {
    color: var(--primary);
    background: var(--surface-container);
}

.login-password-toggle i {
    font-size: 16px;
}

/* ========================================
   SUBMIT BUTTON
   ======================================== */
.login-submit-btn {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: var(--on-primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.2px;
    margin-top: 4px;
    animation: fadeIn 0.5s ease-out 0.3s backwards;
}

.login-submit-btn:hover:not(:disabled) {
    background: var(--on-primary-fixed-variant);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.login-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.login-submit-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.login-submit-btn i {
    font-size: 15px;
    transition: transform 0.2s ease;
}

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

.login-submit-btn.loading {
    pointer-events: none;
    opacity: 0.85;
}

.login-submit-btn.loading i {
    animation: spin 1s linear infinite;
}

/* ========================================
   CARD FOOTER
   ======================================== */
.login-card-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--on-surface-variant);
    font-family: 'Inter', sans-serif;
}

.login-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

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

/* ========================================
   ERROR STATES
   ======================================== */
.login-form-group.error .login-input {
    border-color: var(--error);
    background: var(--error-container);
    box-shadow: 0 0 0 3px rgba(186, 26, 26, 0.1);
}

.login-form-group.error .login-input-icon {
    color: var(--error);
}

.login-form-group.error .login-form-label {
    color: var(--error);
}

.login-form-group.error .login-form-label i {
    color: var(--error);
}

.login-form-group.shake {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* ========================================
   FOOTER
   ======================================== */
.login-footer {
    background: var(--surface-container-lowest);
    border-top: 1px solid var(--outline-variant);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.login-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .login-footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.login-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.login-footer-brand-name {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.login-footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--on-surface-variant);
}

.login-footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.login-footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--on-surface-variant);
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-footer-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ========================================
   FLOATING CONTACT BUTTONS
   ======================================== */
@keyframes login-float-glow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 104, 255, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 12px rgba(0, 104, 255, 0);
    }
}

@keyframes login-float-glow-hotline {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 12px rgba(16, 185, 129, 0);
    }
}

@keyframes login-float-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
        border-width: 1px;
    }
}

.login-float-contact {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 9999;
}

.login-float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.login-float-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    opacity: 0;
    pointer-events: none;
}

.login-float-btn:hover {
    transform: scale(1.12);
    color: #fff;
}

.login-float-zalo {
    background: #0068ff;
    animation: login-float-glow 2.2s ease-in-out infinite;
}

.login-float-zalo::before {
    border-color: #0068ff;
    animation: login-float-ring 2.2s ease-out infinite;
}

.login-float-zalo:hover {
    background: #0052cc;
}

.login-float-zalo-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.login-float-hotline {
    background: #10b981;
    animation: login-float-glow-hotline 2.2s ease-in-out infinite 0.5s;
}

.login-float-hotline::before {
    border-color: #10b981;
    animation: login-float-ring 2.2s ease-out infinite 0.5s;
}

.login-float-hotline:hover {
    background: #059669;
}

.login-float-hotline i {
    font-size: 1.25rem;
    color: #fff;
}

.login-float-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.login-float-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--primary);
}

.login-float-btn:hover .login-float-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

/* ========================================
   RESPONSIVE - Mobile First
   ======================================== */

/* Very small screens */
@media (max-width: 374px) {
    .login-main {
        padding: 80px 12px 32px;
    }

    .login-card {
        padding: 20px 16px;
        border-radius: var(--radius-lg);
    }

    .login-card-title {
        font-size: 20px;
    }

    .login-card-subtitle {
        font-size: 13px;
    }

    .login-card-icon {
        width: 52px;
        height: 52px;
        padding: 8px;
    }

    .login-hero-title {
        font-size: 24px;
    }

    .login-hero-desc {
        font-size: 14px;
    }

    .login-feature-item {
        padding: 12px 14px;
        gap: 12px;
    }

    .login-feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }

    .login-feature-text h3 {
        font-size: 14px;
    }

    .login-feature-text p {
        font-size: 12px;
    }

    .login-footer-links {
        gap: 14px;
    }

    .login-footer-link {
        font-size: 11px;
    }
}

/* Small screens */
@media (min-width: 375px) and (max-width: 479px) {
    .login-main {
        padding: 84px 16px 36px;
    }

    .login-card {
        padding: 24px 20px;
        border-radius: var(--radius-lg);
    }

    .login-card-title {
        font-size: 22px;
    }

    .login-hero-title {
        font-size: 26px;
    }
}

/* Mobile */
@media (max-width: 479px) {
    .login-container {
        padding: 0 16px;
    }

    .login-header .login-container {
        height: 56px;
    }

    .login-main {
        padding-top: 72px;
        padding-bottom: 24px;
    }

    .login-content-grid {
        gap: 24px;
    }

    .login-hero-col {
        display: none;
    }

    .login-brand-name {
        font-size: 16px;
    }

    .login-nav-link {
        padding: 7px 12px;
        font-size: 12px;
    }

    .login-nav-link span {
        display: none;
    }

    .login-nav-link i {
        font-size: 14px;
    }

    .login-hero-features {
        max-width: 100%;
    }

    .login-form {
        gap: 16px;
    }

    .login-input {
        height: 48px;
        font-size: 16px;
    }

    .login-submit-btn {
        height: 48px;
        font-size: 14px;
    }

    .login-footer {
        padding: 16px 0;
    }

    .login-float-contact {
        bottom: 1rem;
        right: 1rem;
    }

    .login-float-btn {
        width: 46px;
        height: 46px;
    }
}

/* Tablet */
@media (min-width: 480px) and (max-width: 767px) {
    .login-container {
        padding: 0 20px;
    }

    .login-card {
        padding: 28px 24px;
        max-width: 440px;
    }

    .login-card-title {
        font-size: 24px;
    }

    .login-hero-title {
        font-size: 32px;
    }

    .login-hero-features {
        max-width: 480px;
    }
}

/* Desktop */
@media (min-width: 768px) {
    .login-hero-col {
        order: 1;
    }

    .login-card-col {
        order: 2;
    }

    .login-content-grid {
        grid-template-columns: 1fr 420px;
        gap: 40px;
        max-width: 960px;
    }

    .login-hero-col {
        text-align: left;
        align-items: flex-start;
    }

    .login-hero-badge {
        margin: 0;
    }

    .login-hero-desc {
        max-width: 100%;
    }

    .login-hero-features {
        margin-top: 8px;
    }

    .login-card {
        max-width: 420px;
    }
}

/* Large desktop */
@media (min-width: 1024px) {
    .login-content-grid {
        gap: 56px;
        max-width: 1060px;
    }

    .login-card {
        padding: 36px;
    }

    .login-card-title {
        font-size: 28px;
    }

    .login-hero-title {
        font-size: 44px;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.login-input:focus-visible,
.login-submit-btn:focus-visible,
.login-password-toggle:focus-visible,
.login-nav-link:focus-visible,
.login-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

::selection {
    background: var(--secondary-container);
    color: var(--on-secondary-container);
}

/* ========================================
   PREVENT HORIZONTAL OVERFLOW
   ======================================== */
@media (max-width: 767px) {
    html, body {
        overflow-x: hidden;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .login-ambient-bg,
    .login-header,
    .login-footer,
    .login-float-contact {
        display: none;
    }

    .login-main {
        padding: 0;
    }

    .login-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
