h1 {
    color: white;
}

.message {
    color: white;
}

.error-messages {
    color: #fa044f;
    font-size: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

form input {
    margin: 10px;
    border-radius: 5px;
    font-size: 20px;
}

form button {
    margin: 15px;
    font-size: 20px;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
    background-color: #fa044f;
    color: white;
}

form button:hover {
    background-color: rgb(185, 182, 182);
    color: black;
}