/* ===== LAYOUT ===== */
.layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-image: url('/img/shop.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;

}

main {
    width: 100%;
    margin: 0 auto;
    flex: none !important;
}

section.login {
    width: 98%;
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--color-6);
    padding: 2em;
    border-radius: 10px;
}

h3 {
    text-align: center;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 1em;
}

@media (max-width: 768px) {}