﻿/* style_sistema.css - VersÃ£o Corrigida para Komova EstÃºdio */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary: #1c1c1c;
    --accent: #d73a49;
    --text: #777777;
    --bg: #f9f9f9;
    --white: #ffffff;
    --border: #e1e1e1;
    --chart-purple: #8e44ad;
    --chart-blue: #3498db;
    --success: #27ae60;
}

* { 
    box-sizing: border-box; 
}

html,
body {
    min-height: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    margin: 0; 
    padding: 0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 20px;
}

a { 
    text-decoration: none; 
    color: var(--primary); 
    transition: 0.3s; 
}

a:hover { 
    color: var(--accent); 
}

/* UtilitÃ¡rios */
.text-center { text-align: center; }
.text-sm { font-size: 11px; }

/* Layout da NavegaÃ§Ã£o */
.top-nav {
    background: var(--white);
    padding: 18px 40px;
    border-bottom: 1px solid var(--border);
}

body.admin-page {
    padding-left: 282px;
    background:
        radial-gradient(circle at top left, rgba(215, 58, 73, 0.05), transparent 20%),
        linear-gradient(180deg, #faf9f7 0%, #f6f7f9 100%);
}

.top-nav-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 2rem;
    line-height: 1;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 20px;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
}

.container {
    width: min(1280px, calc(100% - 40px));
    margin: 28px auto;
}

.site-footer {
    margin-top: auto;
    padding: 30px;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
}

.site-footer-copy {
    margin: 0;
    color: var(--white);
    opacity: 0.6;
}

.nav-groups {
    display: grid;
    gap: 26px;
    flex: 1;
}

.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 258px;
    padding: 12px 0 0;
    border-right: 1px solid rgba(28, 28, 28, 0.08);
    border-bottom: none;
    background: #fdfdfb;
    box-shadow: 16px 0 40px rgba(28, 28, 28, 0.04);
    overflow-y: auto;
    z-index: 50;
}

.admin-sidebar::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(28, 28, 28, 0.08);
    pointer-events: none;
}

.admin-sidebar .top-nav-main {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    min-height: 100%;
}

.admin-sidebar .logo {
    display: block;
    margin: 0;
    padding: 0 14px 10px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

.admin-logo {
    display: grid;
    gap: 2px;
}

.admin-logo-image {
    display: block;
    width: min(179px, 100%);
    height: auto;
}

.admin-nav {
    flex: 1;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 10px 14px 14px;
}

.admin-nav-section {
    display: grid;
    gap: 5px;
}

.admin-nav-section-quick {
    margin-top: auto;
    padding-top: 6px;
}

.admin-nav-label {
    color: #c8c3bb;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.admin-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 2px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 24px;
    color: #5c5c57;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.1;
}

.admin-nav-link:hover {
    color: #111111;
}

.admin-nav-link-mark {
    width: 6px;
    height: 24px;
    border-radius: 999px;
    background: transparent;
    flex-shrink: 0;
}

.admin-nav-link.is-active {
    color: #111111;
    font-weight: 700;
}

.admin-nav-link.is-active .admin-nav-link-mark {
    background: #111111;
}

.admin-nav-link.is-accent {
    color: #1f6a4a;
}

.admin-nav-link.is-student-invite {
    color: #1f6a4a;
}

.admin-nav-link.is-professor-invite {
    color: #2f6fb3;
}

.admin-nav-link.is-danger {
    color: #b53e35;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    text-align: left;
}

@media (max-width: 900px) {
    body.admin-page {
        padding-left: 0;
    }

    .top-nav {
        padding: 16px 20px;
    }

    .top-nav-main {
        gap: 16px;
    }

    .nav-links {
        justify-content: flex-start;
        gap: 10px 14px;
        font-size: 0.86rem;
    }

    .nav-groups {
        justify-content: flex-start;
        width: 100%;
    }

    .nav-group {
        width: 100%;
        min-width: 0;
    }

    .nav-group-title {
        font-size: 1.02rem;
    }

    .logo {
        font-size: 1.7rem;
    }

    .admin-sidebar {
        position: static;
        width: auto;
        box-shadow: none;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .admin-nav {
        width: 100%;
    }
}

/* Estilo dos Cards do Sistema */
.card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    margin-bottom: 20px;
}

/* GrÃ¡fico de Dias Mais Movimentados */
.chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 180px;
    padding-top: 30px;
    gap: 4px;
}

.bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    cursor: default;
}

.bar {
    width: 60%;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: var(--chart-purple); /* Fallback para navegadores antigos */
    background: linear-gradient(to bottom, var(--chart-purple), var(--chart-blue));
}

.bar.winner {
    background: linear-gradient(to bottom, #e74c3c, #f39c12);
}

/* Efeito ao passar o rato nas barras */
.bar-wrapper:hover .bar {
    transform: scaleY(1.05);
    filter: brightness(1.2);
    box-shadow: 0 6px 12px rgba(142, 68, 173, 0.3);
}

/* O NÃºmero (Badge) acima da barra */
.bar-value {
    position: absolute;
    top: -25px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #555;
    background: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    opacity: 0; 
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.bar-wrapper:hover .bar-value {
    opacity: 1;
    transform: translateY(0);
}

.bar-label {
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
}

/* BotÃµes e Inputs */
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    background: var(--primary);
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.btn:hover {
    background: var(--accent);
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Autenticacao */
body.auth-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(215, 58, 73, 0.10), transparent 32%),
        radial-gradient(circle at bottom right, rgba(52, 152, 219, 0.10), transparent 28%),
        linear-gradient(135deg, #f6f2ee 0%, #f5f6f8 45%, #eef3f8 100%);
}

body.auth-page.login-page,
body.auth-page.logout-page {
    margin: 0;
    padding: 0;
    display: grid;
    min-height: 100vh;
}

.auth-shell {
    width: min(1160px, calc(100% - 40px));
    min-height: calc(100vh - 60px);
    margin: 30px auto;
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(28, 28, 28, 0.10);
    backdrop-filter: blur(14px);
}

.auth-side {
    position: relative;
    padding: 54px 48px;
    background:
        linear-gradient(160deg, rgba(28, 28, 28, 0.96) 0%, rgba(39, 46, 57, 0.94) 58%, rgba(51, 74, 93, 0.94) 100%);
    color: #f4f1ea;
}

.auth-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(215, 58, 73, 0.25), transparent 22%),
        radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.08), transparent 22%);
    pointer-events: none;
}

.auth-side > * {
    position: relative;
    z-index: 1;
}

.auth-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.auth-kicker i {
    font-size: 0.92rem;
}

.auth-side h1,
.auth-side h2 {
    color: #fffaf1;
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 3vw, 3.5rem);
    line-height: 1.05;
}

.auth-side p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    margin: 0 0 28px;
}

.auth-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.auth-feature-list li {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-feature-list i {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.auth-feature-list strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 0.95rem;
}

.auth-feature-list span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.5;
}

.auth-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 38px;
}

.login-hero {
    position: relative;
    min-height: 100vh;
    padding: 48px 56px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: url('img/login_pinceis.jpg') center center / cover no-repeat;
}

.login-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.56) 0%, rgba(12, 12, 12, 0.44) 38%, rgba(12, 12, 12, 0.60) 100%);
}

.login-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 460px);
    gap: 54px;
    align-items: center;
    flex: 1;
}

.login-story {
    max-width: 980px;
    color: #ffffff;
}

.login-story-logo {
    display: block;
    width: min(290px, 60%);
    margin-bottom: 38px;
    filter: brightness(0) invert(1);
}

.login-story h1 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(3.3rem, 6vw, 7.6rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.login-story p {
    max-width: 980px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    line-height: 1.7;
}

.login-panel {
    width: min(510px, 100%);
}

.login-panel-hero {
    padding: 34px 34px 28px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
}

.login-heading {
    margin-bottom: 24px;
    text-align: left;
}

.login-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(2.1rem, 2vw, 3rem);
    color: #1c1c1c;
}

.login-heading p {
    margin: 0;
    color: #7d848c;
    font-size: 0.92rem;
}

.login-form .auth-field {
    margin-bottom: 2px;
}

.login-form .auth-field input {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 0;
    border-color: #e6e6e6;
    background: #f6f6f6;
    font-size: 0.88rem;
    box-shadow: inset 0 0 0 1px rgba(28, 28, 28, 0.02);
}

.login-form .auth-field input:focus {
    border-color: #666666;
    box-shadow:
        inset 0 0 0 1px #666666,
        0 0 0 4px rgba(0, 0, 0, 0.06);
}

.login-submit {
    width: min(180px, 100%);
    margin-top: 6px;
    margin-left: auto;
    margin-right: auto;
    min-height: 46px;
    border-radius: 0;
    background: #000000;
    border: none;
    box-shadow: none;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.login-submit:hover {
    background: #111111;
    filter: none;
}

.login-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.login-footer-note {
    position: relative;
    z-index: 1;
    margin: 20px 0 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.login-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(360px, 0.95fr);
    background: #ffffff;
}

.login-split-visual {
    position: relative;
    min-height: 100vh;
    background: url('img/login_pinceis.jpg') 30% center / cover no-repeat;
}

.login-visual-note {
    position: absolute;
    top: 12%;
    left: 18%;
    max-width: 510px;
    color: #ffffff;
}

.login-visual-note h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.55rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.login-visual-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.94rem;
    line-height: 1.8;
}

.login-split-panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 30px;
    background: #ffffff;
}

.login-panel-clean {
    width: min(330px, 100%);
}

.login-brand-clean {
    margin-bottom: 16px;
    text-align: center;
}

.login-brand-clean img {
    max-width: min(200px, 64%);
    height: auto;
}

.login-heading-clean {
    text-align: center;
    margin-bottom: 16px;
}

.login-heading-clean h2 {
    margin-bottom: 6px;
    color: #1c1c1c;
    font-size: 1.56rem;
}

.login-heading-clean p {
    color: #7e848b;
    margin: 0;
    font-size: 0.80rem;
    line-height: 1.55;
}

.login-links-clean {
    margin-top: 12px;
}

.login-footer-note-clean {
    margin-top: 24px;
    color: #a0a6ad;
    font-size: 0.72rem;
}

.login-panel-clean .auth-field label {
    margin-bottom: 5px;
    font-size: 0.72rem;
}

.login-panel-clean .auth-form {
    gap: 10px;
}

.login-panel-clean .auth-link {
    font-size: 0.80rem;
}

.auth-card {
    width: min(440px, 100%);
    padding: 36px 34px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(28, 28, 28, 0.07);
    box-shadow: 0 18px 40px rgba(28, 28, 28, 0.10);
}

.auth-card.auth-card-sm {
    width: min(400px, 100%);
}

.auth-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 22px;
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--primary);
}

.auth-logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8a8a8a;
}

.auth-card h2 {
    margin: 0 0 10px;
    font-size: 2rem;
}

.auth-card p {
    margin: 0 0 22px;
    color: #6f7379;
}

.auth-form {
    display: grid;
    gap: 16px;
}

.auth-field label {
    display: block;
    margin-bottom: 7px;
    color: #454a52;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.auth-field input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d9dee5;
    border-radius: 14px;
    background: #fbfcfd;
    color: #1c1c1c;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.auth-field input:focus {
    outline: none;
    border-color: #b7b7b7;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(160, 160, 160, 0.12);
}

.auth-submit {
    width: 80%;
    min-height: 40px;
    border: none;
    border-radius: 4px;
    background: #000;
    color: #fff;
    font: inherit;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 14px 28px rgba(28, 28, 28, 0.18);
}

.auth-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.auth-submit:focus-visible {
    outline: 3px solid rgba(160, 160, 160, 0.22);
    outline-offset: 2px;
}

.auth-inline-links,
.auth-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.auth-inline-links {
    margin-top: 2px;
}

.auth-footer-links {
    margin-top: 22px;
    padding-top: 10px;
    border-top: 1px solid #eceef2;
}

.auth-link {
    color: #596474;
    font-size: 0.92rem;
    font-weight: 600;
}

.auth-link:hover {
    color: var(--accent);
}

.auth-link.is-primary {
    color: #1c1c1c;
}

.auth-link.is-primary:hover {
    color: var(--accent);
}

.auth-muted {
    color: #8a9099;
    font-size: 0.88rem;
}

.auth-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-size: 0.92rem;
    font-weight: 600;
}

.auth-alert.error {
    background: #fff0f1;
    color: #b73a47;
    border-color: #f3c6cd;
}

.auth-alert.success {
    background: #eef8f1;
    color: #2b7c52;
    border-color: #c8e4d2;
}

.auth-status-card {
    text-align: center;
}

.auth-status-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.08), rgba(52, 152, 219, 0.14));
    color: var(--primary);
    font-size: 1.8rem;
}

.auth-status-icon.success {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.14), rgba(39, 174, 96, 0.22));
    color: #23824f;
}

.auth-status-icon.warning {
    background: linear-gradient(135deg, rgba(215, 58, 73, 0.12), rgba(215, 58, 73, 0.20));
    color: #c44352;
}

.auth-countdown {
    margin-top: 18px;
    font-size: 0.9rem;
    color: #8a9099;
}

@media (max-width: 980px) {
    .auth-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .auth-side,
    .auth-panel {
        padding: 34px 24px;
    }

    .auth-card {
        padding: 28px 24px 24px;
    }

    .auth-side h1,
    .auth-side h2 {
        font-size: 2.2rem;
    }

    .login-hero {
        padding: 34px 24px 28px;
    }

    .login-hero-content {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .login-story-logo {
        width: min(250px, 72%);
        margin-bottom: 28px;
    }

    .login-story h1 {
        font-size: clamp(2.7rem, 8vw, 4.6rem);
    }

    .login-story p {
        font-size: 1rem;
        max-width: 680px;
    }

    .login-panel-hero {
        padding: 28px 24px 24px;
    }

    .login-footer-note {
        margin-top: 28px;
    }

    .login-split {
        grid-template-columns: 1fr;
    }

    .login-split-visual {
        min-height: 240px;
        background-position: center 36%;
    }

    .login-visual-note {
        top: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .login-visual-note h3 {
        font-size: 1.18rem;
    }

    .login-visual-note p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .login-split-panel {
        min-height: auto;
        padding: 28px 22px 34px;
    }

    .login-footer-note-clean {
        margin-top: 36px;
    }
}

@media (max-width: 560px) {
    .auth-shell {
        width: min(100%, calc(100% - 20px));
        margin: 10px auto;
        border-radius: 22px;
    }

    .auth-inline-links,
    .auth-footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-hero {
        padding: 24px 18px 22px;
    }

    .login-story-logo {
        width: min(220px, 78%);
    }

    .login-story h1 {
        font-size: 2.5rem;
    }

    .login-story p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .login-panel-hero {
        padding: 24px 20px 22px;
        border-radius: 22px;
    }

    .login-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-form .auth-field input {
        min-height: 46px;
    }

    .login-submit {
        min-height: 44px;
    }

    .login-footer-note {
        margin-top: 22px;
        font-size: 0.84rem;
    }

    .login-split-panel {
        padding: 28px 20px 34px;
    }

    .login-brand-clean {
        margin-bottom: 28px;
    }

    .login-links-clean {
        align-items: flex-start;
    }

    .login-footer-note-clean {
        margin-top: 28px;
    }
}










body.auth-page.login-page,
body.auth-page.logout-page {
    display: block;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.auth-page.login-page .login-split,
body.auth-page.logout-page .login-split {
    display: grid;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    align-self: start;
}



