form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 15px;
    font-family: "Nunito";
    font-weight: bold;
    color: #202020;
}

input {
    margin-bottom: 0;
    border: none;
    border-bottom: 2px solid #202020;
    font-family: "Nunito";
    font-size: 24px;
    color: #202020;
}

input:focus {
    outline: none;
}

button {
    padding: 10px;
    background-color: #00000000;
    color: #202020;
    border: 1px solid #202020;
    border-radius: 2px;
    cursor: pointer;
    font-family: "Nunito";
    font-size: 18px;
    transition-duration: 300ms;
    font-weight: 700;
}

button:hover {
    background-color: #202020;
    color: white;
}

.wrapper {
    display: flex;
    flex-direction: column;
}

.error-box {
    background-color: #ffdddd;
    color: #d8000c;
    border: 1px solid #d8000c;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 2px;
    font-family: "Nunito";
    font-size: 18px;
    text-align: center;
    word-wrap: break-word;
}