.banner * {
    font-family: Poppins, sans-serif;
}

.banner {
    background: #1a73e8;
    color: #FFFFFF;
    text-align: center;
    height: 100%;
    border-radius: 12px;
    padding-top: 32px;
    padding-bottom: 32px;
}

.banner .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 264px;
}

.banner .logo-container .icon-logo {
    width: 50px;
    height: auto;
    transform: scale(5);
    position: relative;
    top: -12px;
}

.banner .logo-container {
    filter: grayscale(1) brightness(100);
    mix-blend-mode: screen;
    transform: translateZ(0);
}

.banner .banner-title {
    color: #98bcf8;
    font-size: 1em;
}

.banner .text-logo {
    width: 180px;
    margin-top: 12px;
}

.banner .slideshow {
    margin-top: 20px;
    display: none;
}

.banner .slideshow .title {
    font-size: 1.6em;
    color: #ffffff;
    font-weight: 600;
}

.banner .slideshow .description {
    font-size: 1.0em;
    color: #98bcf8;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.banner .lines {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.banner .line {
    height: 4px;
    background-color: #ffffff;
    border-radius: 4px;
    width: 12px;
}

.banner .line.first {
    width: 50px;
}

@media (prefers-color-scheme: dark) {
    body,
    .banner {
        background: #1a3c59 !important;
    }

    .banner .field-panel {
        background-color: #292929 !important;
    }

    .banner h1 {
        color: white !important;
    }

    .banner input {
        background: #323232 !important;
        border: none !important;
        border-bottom: 2px solid #545454 !important;
    }

    .banner label,
    .banner input {
        color: white !important;
    }

    .banner .options a,
    .banner .footer a {
        color: #4bafff !important;
    }

    .banner .banner {
        background: #0b314fa8;
    }

    .banner .btn-google {
        background-color: rgba(36, 137, 218, .1);
        color: white;
        border: none !important;
    }

    .banner .divider hr {
        border-top: 1px solid #4c4c4ce9;
    }

}