*{
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: white;
}
body, main{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.principal{
    background-image: url('/Assets/fundo.png');
}
.form{
    display: flex;
    width: 80%;
    height: 75%;
    background-color: rgba(160, 160, 160, 0.318);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    padding: 2%;
    gap: 30px;
    box-shadow: 0px 0px 15px rgb(71, 71, 71);
    border-radius: 15px;
}
.form h1{
    font-size: 3.5rem;
}
.form p{
    font-size: 1rem;
}

.form-esquerda{
    width: 50%;
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.form-esquerda div{
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-evenly;
}
hr{
    width: 30%;
}
.form-direita{
    width: 40%;
    height: 70%;
    backdrop-filter: blur(10px);
    padding: 10px;
    box-shadow: 0px 0px 15px rgb(71, 71, 71);
    border-radius: 15px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.form-direita h2{
    text-align: center;
    font-size: 2.5rem;
}
.form-direita div{
    display: flex; 
    flex-direction: column;
    gap: 5px;
    width: 75%;
}
.form-direita input{
    padding: 10px 15px;
    border-radius: 20px;
    border: 0px;
    background-color: rgba(0, 0, 0, 0.318);

}
.botao{
    width: 75%;
    height: 35px;
    background-image: linear-gradient(90deg, #59E064, #005D6C, #030148);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.5s;
}
.botao:hover{
    letter-spacing: 10px;
    background-image: linear-gradient(90deg, #79d781, #2d5e67, #25235a);
}

.mensagem{
    color: rgb(186, 59, 59);
    font-size: 0.75rem;
}