.spacer {
    height: 64px;
}

.wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form {
    width: 400px;
    max-width: 90%;
    padding: 8px 16px;
    background-color: darkred;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.form-row {
    display: flex;
    flex-direction: column-reverse;
}

.form-row label {
    color: white;
    font-weight: 600;
}

.form-row input[required] + label::after, .form-row textarea + label::after {
    content: "*";
    font-size: 10px;
    margin-left: 4px;
}

form input {
    padding: 4px;
    outline: none;
    font-size: 16px;
}

form textarea {
    width: 100%;
    resize: none;
    border: none;
    outline: none
    padding: 4px;
    font-size: 16px;
}

form button {
    border-radius: 4px;
    background-color: white;
    outline: none;
    color: black;
    font-weight: 500;
    border: none;
    padding: 8px 16px;
    width: fit-content;
    justify-self: center;
    align-self: center;
    transition: all 0.3s ease-out;
}

form button:hover {
    cursor: pointer;
    background-color: #e1e1e1;
}