* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: linear-gradient(135deg, #6ace86, #4ba765); /* Gradiente que clareia */
    background-size: cover; /* Ajusta ao tamanho da tela */
    background-repeat: no-repeat; /* Não repete */
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.titulo {
    margin-top: 180px;
    padding-top: 32px;
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-shadow: 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.3); /* Adicionando sombra ao texto */
}

article {
    margin:auto;
    background-color: white;
    border-radius: 40px;
    width: 570px;
    height: 320px;
}

#logo img {
    width: 100px;
    margin-bottom: 30px;
    transition: transform 0.4s ease-in-out;
}

#logo img:hover {
    transform: scale(1.2);
    opacity: 80%;
}

aside {
    margin-top: 50px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.label-input {
    margin-bottom: 20px;
    margin-left: 30px;
}

input {
    float: inline-end;
    border-radius: 10px;
    border-color: red;
    padding: 5px;
}

.botao-envio input {
    text-align: center;
    background:  #52b16d;
    border-radius: 10px;
    border-color: black;
    width: 250px;
    margin-left: 40px;
    color: white;
}

.botao-envio:hover input {
    font-weight: bold;
}

#mensagemErro {
    text-align: center;
    margin-bottom: -30px;
    margin-top: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: red;
    font-size: 12px;
}

#mensagemLogout {
    text-align: center;
    margin-bottom: -30px;
    margin-top: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: green;
    font-size: 12px;
}

.col-auto {
    display: inline !important;
}

@media (max-width: 380px) {

    html{
        background-image: linear-gradient(135deg, #6ace86, #4ba765); 
    }
}