html, body {
    width: 100%;
    min-height: 100vh;
    font-feature-settings: normal;
    font-variation-settings: normal;
}

.container {
    min-height: 100vh;
    display: flex;
    width: 100%;
}

.logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.painel-esquerdo {
    background: linear-gradient(90deg, var(--verde-claro), var(--verde-escuro));
    color: var(--second-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    width: 50%;
    flex-wrap: nowrap;
}

.logo {
    width: 80%;
    margin-bottom: 1rem;
}

.painel-esquerdo h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.painel-esquerdo p {
    margin-top: 0.5rem;
    width: 60%;
    font-weight: 300;
    font-size: 1rem;
    color: white;
}

.painel-direito {
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login {
    width: 50%;
    min-width: 400px;
    height: fit-content;
    padding: 50px;
}

.painel-direito h2, h3, a {
    color: var(--second-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.painel-direito a {
    display: block;
    font-weight: 400;
}

input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--cinza-claro);
    border-radius: 5px;
    margin-bottom: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

body.tema-escuro input {
    background-color: var(--cinza-mais-escuro);
    color: var(--branco);
}

.btn {
    background-color: var(--verde-claro);
    color: var(--branco);
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    padding: 10px 30px;
    width: 100%;
    margin-bottom: 20px;
}

.btn:hover {
    background-color: var(--verde-escuro);
    color: var(--branco);
}



body.tema-escuro .btn {
    background-color: var(--verde-mais-claro);
    color: var(--branco);
}

body.tema-escuro .btn:hover {
    background-color: var(--verde-claro);
    color: var(--branco);
}

@media (max-width: 900px) {
    .painel-esquerdo {
        display: none;
    }

    .painel-direito {
        width: 100%;
    }
}