/* Corpo da página */
body {
    height: 100vh; 
    margin: 0;
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    background-color: plum;
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* Quadro branco */
.container {
    background-color: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 10px; 
    min-width: 300px;
    
}

input,label, button{
    border-radius: 08px;
}

button {
    width: 95px;
    height: 50px;
    align-self: center; 
    background: white;
    text-decoration: solid;
    font-weight: bold;
    cursor:pointer;
}



