body,
html {
    margin: 0;
    padding: 0;
    display: grid;
    height: 100vh;
    background: linear-gradient(115deg, #56d8e4 10%, #1a5ebe 90%);
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    background: white;
    margin: auto;
    width: 450px;
    height: 370px;
    border: 1px solid black;
}

.container h1 {
    text-align: center;
    font-weight: bold;
    margin-top: 35px;
    color: black;
    font-size: 36px;
}

.inputs {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.inputs input {
    border: none;
    border-bottom: 1px solid black;
    height: 40px;
    width: 370px;
    text-indent: 5px;
}

button {
    margin-top: 20px;
    padding: 10px;
    border: none;
    background: linear-gradient(115deg, #56d8e4 10%, #1a5ebe 90%);
    color: white;
    font-weight: bold;
    font-size: 18px;
    width: 370px;
    cursor: pointer;
}

button:hover {
    background: linear-gradient(115deg, #2cb7c4 10%, #114da0 90%);
}

.error {
    color: #e04562;
    font-size: 13px;
    padding: 7px;
    top: 100%;
    border-radius: 3px;
    margin: -22px 0 -25px -20px;
    width: 79%;
}