body {
    min-height: 120vh;
}

/* ================================ */
main {
    display: flex;
    justify-content: center;
    margin: 50px 0 50px 0;
    padding: 50px 0 50px 0;
}

.div-entrar {
    width: 50%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.div-entrar form {
    width: 420px;
    padding: 2%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #B88362;
    border-radius: 0.6vw;
    gap: 20px;
}


.entrada-dados {
    gap: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: none;
    width: 70%;
    height: 50px;
    padding: 8px;
    position: relative;
}

.entrada-dados img {
    position: absolute;
    right: 15px;
    width: 20px;
    height: 20px;
}

.entrada-dados label {
    width: 30%;
}

.entrada-dados input {
    width: 100%;
    height: 35px;
    outline: 0;
    padding: 5px;
    border-radius: 5px;
    border-color: #855c43;
}

.entrada-dados input:focus {
    background-color: rgb(214, 214, 214);
}

.buttom {
    width: 44%;
    height: 40px;

    background-color: #9E7054;
    border: none;
    border-radius: 0.5vw;
    box-shadow: 0 3px 0 #855c43;
    color: white;
    cursor: pointer ;
    transition: 1s;
}

.buttom:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 0 0 black;
}

.buttom:active {
    background-color: #855c43;
}