* {
    margin: 0;
    padding: 0;
}

body {
    font-family:"Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 550;
    background-color: #7BCEE5;
}

form {
    margin-top: 15%;
    margin-left: 30%;
    width: 40%;
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    gap: 3%;

}

input {
    border-radius: 1px;
    font-size: 1.8rem;
    border: none;
    border-radius: 5px;
}

#botao {
    width: 50%;
    height: 5vh;
    font-family: "Poppins", sans-serif;;
    font-weight: 600;
    grid-column: span 2;
    margin-left: 40%;
    margin-top: 3%;
    transition: 0.3s;
    background-color: #222222;
    color: white;
    border: none;
    border-radius: 5px;

}

#botao:hover{
    background-color:rgba(128, 128, 128, 0.74);
    
}



dialog {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    padding: 3%;
    border-radius: 10px;
    font-size: 1.0rem;
    text-align: center;
}

#botaoOK {
    width: 30%;
    margin-top: 10%;
    background-color: #222222;
    color: white;
    transition: 0.3s;
    border-radius: 5px;
    border: none;
}

#botaoOK:hover {
    background-color: rgba(128, 128, 128, 0.74);
}

