:root {
    --primary-color: #7C3AED;
    --primary-gradient-end: #4F46E5;
    --bg-color: #EDE9FE;
    --card-bg: #FFFFFF;
    --text-main: #1A1A2E;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    min-height: 100dvh;
    min-height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    display: flex;
    background-color: var(--bg-color);
}
.login-container {
    display: flex;
    width: 100%;
    min-height: 100%;
    flex: 1;
}
.login-left {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-gradient-end) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.bg-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background: rgba(255, 255, 255, 0.04);
}
.blob-1 {
    width: 350px;
    height: 350px;
    border-radius: 30% 70% 53% 47% / 26% 46% 54% 74%;
    top: -100px;
    left: -120px;
    animation: float1 13s ease-in-out infinite;
}
.blob-2 {
    width: 400px;
    height: 380px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -100px;
    right: -120px;
    animation: float2 15s ease-in-out infinite;
}
.blob-3 {
    width: 180px;
    height: 80px;
    border-radius: 40px;
    top: 15%;
    right: -50px;
    animation: float1 10s ease-in-out infinite reverse;
}
.blob-4 {
    width: 60px;
    height: 60px;
    border-radius: 45% 55% 40% 60%;
    top: 15%;
    left: 12%;
    animation: float2 8s ease-in-out infinite;
}
.blob-5 {
    width: 120px;
    height: 110px;
    border-radius: 40% 60% 50% 50%;
    bottom: 18%;
    left: 8%;
    animation: float1 14s ease-in-out infinite;
}
@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(25px, -20px) rotate(8deg); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 25px) rotate(-8deg); }
}
.login-left-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: white;
}
.hero-animation {
    margin-top: 40px;
    margin-bottom: 60px;
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-animation img {
    width: 380px;
    height: auto;
    z-index: 2;
}
.hero-animation::after {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 170px;
    height: 35px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
}
.wifi-waves {
    position: absolute;
    width: 90px;
    height: 90px;
    z-index: 1;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}
.wifi-left {
    top: -40px;
    left: 10px;
    transform: rotate(-35deg);
}
.wifi-right {
    top: -40px;
    right: 10px;
    transform: rotate(35deg);
}
.wave {
    stroke: rgba(255, 255, 255, 0.85);
    stroke-width: 4;
    stroke-linecap: round;
    fill: none;
    opacity: 0;
    animation: fadeWave 2s infinite ease-out;
}
.wave1 { animation-delay: 0s; }
.wave2 { animation-delay: 0.3s; }
.wave3 { animation-delay: 0.6s; }
@keyframes fadeWave {
    0% { opacity: 0; transform: scale(0.95); }
    15% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.05); }
}
.hero-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: -15px;
}
.hero-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.hero-dots {
    display: flex;
    gap: 8px;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.dot.active {
    width: 28px;
    background-color: #FFFFFF;
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
}
.slider-container {
    width: 100%;
    display: grid;
    place-items: center;
}
.slide {
    grid-area: 1 / 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    z-index: 10;
}
.login-right {
    flex: 1;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    min-height: 100%;
}
.login-card {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0,0,0,0.05);
    overflow: hidden;
    margin: auto; /* Bulletproof centering */
}
.login-card-top {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-gradient-end) 100%);
}
.login-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-icon {
    width: 140px;
    height: 96px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-gradient-end) 100%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}
.login-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}
.login-subtitle {
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 24px;
}
.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.login-form input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 2px solid transparent;
    background-color: rgba(243, 244, 246, 0.7);
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #1F2937;
    transition: all 0.3s ease;
}
.login-form input:focus {
    outline: none;
    background-color: #FFFFFF;
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}
.login-form input::placeholder {
    color: #9CA3AF;
}

.login-btn {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-gradient-end) 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.45);
}
.login-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}
.forgot-pwd {
    font-size: 12px;
    color: #6B7280;
    text-decoration: none;
    margin-top: 16px;
    font-weight: 600;
}
.divider {
    width: 100%;
    height: 1px;
    background-color: #F3F4F6;
    margin: 16px 0;
}
.create-account {
    font-size: 12px;
    color: #9CA3AF;
}
.create-account a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}
.forgot-pwd, .create-account a {
    transition: color 0.2s ease;
}
.forgot-pwd:hover, .create-account a:hover {
    color: var(--primary-color);
}
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.iso-dashboard-container {
    width: 380px;
    height: 380px;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}
.iso-scene {
    width: 0px;
    height: 0px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(5deg) rotateY(0deg) rotateZ(0deg);
    transition: transform 0.15s ease-out;
}
.iso-panel {
    position: absolute;
    background: #FFFFFF;
    border-radius: 12px;
    transform-style: preserve-3d;
    box-shadow:
            1px 1px 0 #6D28D9,
            2px 2px 0 #6D28D9,
            3px 3px 0 #6D28D9,
            4px 4px 0 #6D28D9,
            5px 5px 0 #6D28D9,
            20px 20px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: isoFloat 4s ease-in-out infinite;
    top: 0; left: 0;
}
.iso-center {
    width: 220px; height: 180px;
    margin-top: -90px; margin-left: -110px;
    --tx: -10px; --ty: 10px; --tz: 30px;
    z-index: 3;
}
.iso-left {
    width: 120px; height: 100px;
    margin-top: -50px; margin-left: -60px;
    --tx: -110px; --ty: 110px; --tz: 10px;
    z-index: 2;
    animation-delay: -1s;
}
.iso-right {
    width: 100px; height: 140px;
    margin-top: -70px; margin-left: -50px;
    --tx: 140px; --ty: -40px; --tz: 50px;
    z-index: 4;
    animation-delay: -2s;
}
.iso-panel-content {
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    transform: translateZ(1px);
}
.left-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px 15px;
}
.iso-chart-bar {
    width: 15px;
    background: linear-gradient(to top, var(--primary-color), var(--primary-gradient-end));
    border-radius: 4px;
}
.iso-line-chart { flex: 1; width: 100%; }
.iso-text-line { width: 100%; height: 6px; background: #F3F4F6; border-radius: 3px; margin-top: 8px; }
.iso-text-line.short { width: 60%; }
.iso-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.iso-avatar { width: 24px; height: 24px; background: var(--primary-gradient-end); border-radius: 50%; }
.iso-title { font-size: 14px; font-weight: bold; color: var(--text-main); }
.iso-stats { display: flex; gap: 15px; align-items: center; }
.iso-stat-circle {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 4px solid #F3F4F6;
    border-top-color: #34D399;
    display: flex; justify-content: center; align-items: center;
}
.iso-stat-circle span { color: var(--primary-color); font-weight:bold; font-size:14px; }
.iso-stat-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.iso-bar-row { width: 100%; height: 8px; background: #F3F4F6; border-radius: 4px; overflow: hidden; }
.iso-fill { height: 100%; border-radius: 4px; }
.iso-cloud {
    position: absolute; top: 0; left: 0;
    width: 60px; height: 20px;
    background: white; border-radius: 20px;
    margin-top: -10px; margin-left: -30px;
    transform-style: preserve-3d;
    box-shadow: 1px 1px 0 #E5E7EB, 2px 2px 0 #E5E7EB, 4px 4px 0 #E5E7EB, 15px 15px 25px rgba(0,0,0,0.1);
    animation: isoFloat 5s ease-in-out infinite alternate;
}
.iso-cloud::before, .iso-cloud::after {
    content: ''; position: absolute; background: white; border-radius: 50%;
}
.iso-cloud::before { width: 30px; height: 30px; top: -15px; left: 10px; }
.iso-cloud::after { width: 20px; height: 20px; top: -8px; left: 35px; }
.cloud-1 { --tx: -130px; --ty: -100px; --tz: 10px; --s: 1; animation-delay: -1s; opacity: 0.9;}
.cloud-2 { --tx: 120px; --ty: -130px; --tz: 0px; --s: 0.8; animation-delay: -2.5s; opacity: 0.8;}
.cloud-3 { --tx: -150px; --ty: 80px; --tz: 80px; --s: 1.2; animation-delay: -3.5s;}
.cloud-4 { --tx: 140px; --ty: 70px; --tz: 100px; --s: 0.9; animation-delay: -4s;}
@keyframes isoFloat {
    0%, 100% { transform: translateX(var(--tx)) translateY(var(--ty)) translateZ(var(--tz)) scale(var(--s, 1)) translateY(0px); }
    50% { transform: translateX(var(--tx)) translateY(var(--ty)) translateZ(var(--tz)) scale(var(--s, 1)) translateY(-15px); }
}
.map-scene {
    width: 0px;
    height: 0px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(15deg) rotateY(15deg) rotateZ(-3deg);
    transition: transform 0.15s ease-out;
}
.sensor-thermo {
    position: absolute;
    top: 50%; left: 50%;
    margin-top: -25px; margin-left: -8px;
    width: 16px; height: 50px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: 1px 1px 0 #6D28D9, 2px 2px 0 #6D28D9, 8px 8px 15px rgba(0,0,0,0.15);
    transform-style: preserve-3d;
    transform: translateX(var(--nx)) translateY(var(--ny)) translateZ(var(--nz));
    animation: nodeFloat 4s ease-in-out infinite alternate;
}
.thermo-bulb {
    position: absolute; bottom: 2px; left: 2px;
    width: 10px; height: 10px;
    background: #EF4444; border-radius: 50%;
}
.thermo-bar {
    position: absolute; bottom: 8px; left: 5px;
    width: 4px; height: 25px;
    background: #EF4444; border-radius: 2px;
}
.sensor-panel {
    position: absolute;
    top: 50%; left: 50%;
    margin-top: -15px; margin-left: -35px;
    padding: 6px 10px;
    background: #FFFFFF;
    border-radius: 8px;
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: bold; color: var(--text-main);
    box-shadow: 1px 1px 0 #6D28D9, 2px 2px 0 #6D28D9, 10px 10px 15px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.8);
    transform-style: preserve-3d;
    transform: translateX(var(--nx)) translateY(var(--ny)) translateZ(var(--nz));
    animation: nodeFloat 3s ease-in-out infinite alternate-reverse;
}
.weather-icon { width: 14px; height: 14px; }
.map-wrapper {
    position: relative;
    transform-style: preserve-3d;
    animation: isoFloat 5s ease-in-out infinite alternate;
    --tx: 0px; --ty: 0px; --tz: 0px;
}
.map-base {
    position: absolute;
    width: 360px; height: 240px;
    margin-top: -120px; margin-left: -180px;
    background: #FFFFFF;
    border-radius: 12px;
    transform-style: preserve-3d;
    box-shadow:
            1px 1px 0 #6D28D9, 2px 2px 0 #6D28D9,
            3px 3px 0 #6D28D9, 4px 4px 0 #6D28D9,
            5px 5px 0 #6D28D9, 20px 20px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: translateZ(0px);
}
.map-grid {
    position: absolute;
    width: 100%; height: 100%;
    transform: translateZ(1px);
    background-image:
            linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 12px;
    overflow: hidden;
}
.map-grid svg { width: 100%; height: 100%; }
.map-node {
    position: absolute;
    top: 0; left: 0;
    transform-style: preserve-3d;
    transform: translateX(var(--nx)) translateY(var(--ny)) translateZ(var(--nz));
    animation: nodeFloat 3s ease-in-out infinite alternate;
}
.node-stem {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(124, 58, 237, 0.4), transparent);
    top: 6px; left: -1px;
    transform-origin: top center;
    transform: rotateX(-90deg) translateY(0px);
    pointer-events: none;
}
.node-core {
    position: absolute;
    width: 12px; height: 12px;
    border-radius: 50%;
    margin-top: -6px; margin-left: -6px;
    border: 2px solid white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.node-active .node-core { background: #34D399; }
.node-inactive .node-core { background: #EF4444; }
.node-pulse {
    position: absolute;
    width: 24px; height: 24px;
    margin-top: -12px; margin-left: -12px;
    background: rgba(52, 211, 153, 0.4);
    border-radius: 50%;
    animation: mapPulse 2s infinite;
}
.node-tooltip {
    position: absolute;
    width: 90px;
    margin-top: -50px; margin-left: -45px;
    background: rgba(26, 26, 46, 0.95);
    color: white;
    padding: 6px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transform: translateZ(var(--tz));
    pointer-events: none;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}
@keyframes nodeFloat {
    0% { transform: translateX(var(--nx)) translateY(var(--ny)) translateZ(var(--nz)); }
    100% { transform: translateX(var(--nx)) translateY(var(--ny)) translateZ(calc(var(--nz) + 12px)); }
}
@keyframes mapPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}/* ------------------------------------- */
/* ALERT NOTIFICATIONS                   */
/* ------------------------------------- */
.alert-box {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1000;
    width: 340px;
    display: flex;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    pointer-events: auto;
}
.alert-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.alert-icon svg {
    width: 100%;
    height: 100%;
}
.alert-content {
    display: flex;
    flex-direction: column;
}
.alert-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}
.alert-msg {
    font-size: 12px;
    opacity: 0.9;
}
.error-alert {
    background: #FEF2F2;
    border-color: #FEE2E2;
    color: #991B1B;
}
.error-alert .alert-icon {
    color: #DC2626;
}
.success-alert {
    background: #ECFDF5;
    border-color: #D1FAE5;
    color: #065F46;
}
.success-alert .alert-icon {
    color: #059669;
}

/* Animations */
.slide-in-down {
    animation: slideInAlert 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes slideInAlert {
    0% {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* ------------------------------------- */
/* INPUT ERROR STATES & ANIMATIONS       */
/* ------------------------------------- */
.input-error {
    border-color: #EF4444 !important;
    background-color: #FEF2F2 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1) !important;
}
.shake-error {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
    40%, 60% { transform: translate3d(3px, 0, 0); }
}
.field-error-msg {
    color: #EF4444;
    font-size: 11px;
    margin: 6px 0 0 4px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: slideInDownAlert 0.3s ease forwards;
}
.field-error-msg svg {
    width: 12px;
    height: 12px;
}

/* ------------------------------------- */
/* PASSWORD TOGGLE EYE ICON              */
/* ------------------------------------- */
.password-wrapper {
    position: relative;
    width: 100%;
}
.password-wrapper input {
    padding-right: 48px !important;
}
.password-toggle {
    position: absolute;
    right: 12px;
    top: 24px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 6px;
    cursor: pointer;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.password-toggle:hover {
    color: var(--primary-color, #7C3AED);
    background-color: rgba(124, 58, 237, 0.1);
}
.password-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

/* ------------------------------------- */
/* RESPONSIVE DESIGN                     */
/* ------------------------------------- */
@media screen and (max-width: 960px) {
    .login-container {
        flex-direction: column;
    }
    .login-left {
        display: none; /* Hide heavy 3D graphics on tablets/mobiles */
    }
    .login-right {
        width: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(79, 70, 229, 0.05) 100%), var(--bg-color);
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .login-card {
        width: 100%;
        max-width: 400px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        margin: auto;
    }
}

@media screen and (max-width: 480px) {
    .login-right {
        padding: 16px;
    }
    .login-card-content {
        padding: 32px 24px;
    }
    .login-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    .login-title {
        font-size: 22px;
    }
    .login-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .login-form input {
        padding: 12px 14px;
        font-size: 16px; /* 16px previene el auto-zoom en iOS Safari */
    }
    .login-btn {
        padding: 12px;
        font-size: 15px;
    }
    .alert-box {
        width: calc(100% - 32px);
        left: 16px;
        right: 16px;
        top: 16px;
    }
}

/* Optimización para altura reducida (ej. teclados móviles abiertos) */
@media screen and (max-height: 700px) and (max-width: 480px) {
    .login-right {
        align-items: flex-start;
        padding-top: 20px;
    }
    .login-icon {
        display: none; /* Ocultar el logo para dar espacio al teclado */
    }
    .login-subtitle {
        display: none; /* Ocultar el texto de 'Bienvenido' */
    }
    .login-card-content {
        padding: 20px 16px;
    }
    .login-header {
        margin-bottom: 16px;
    }
    .form-group {
        margin-bottom: 14px;
    }
}
