* {
    margin: 0;
}

input {
    border: 0px;
    border-bottom: solid 1px
}

input:focus {
    border: solid 1px limegreen;
    outline: none
}

input:hover {
    border: solid 1px red
}

.forms {
    width: 100%;
    height: 100vh;
    background-image: url(prano\ de\ fundo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    justify-content: center;
    align-items: center;
}

.bodi {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 250px;
    height: auto;

}

form {
    display: grid;
    justify-content: center;
}

h6 {
    font-size: larger;


}

button {
    width: 200px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 15%;

}

button:hover {
    text-decoration: underline;
}