@import "/css/reset.css";

.centro {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

form {
    width: 100%;
    max-width: 400px;
    background-color: #FFF;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 5px 5px rgba(255,255,255,.2);
}
form h1 {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}
form p {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.2rem;
}
form input {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    border-radius: 5px;
    border: 1px solid #CCC;
    margin-bottom: 20px;
    font-size: 1.4rem;
}
form button {
    background-color: green;
    color: #FFF;
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    font-size: 1.4rem;
    border-radius: 10px;
}