#contact-form {
    font-family: "Montserrat", sans-serif;
    display: grid;
    grid-template-columns: 1fr;
}

.field {
    margin-bottom: 36px;
    width: 100%;
}

.field label {
    color: #fff;
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    width: 100%;
}

input.text,
textarea.textarea {
    color: #5e5d5d;
    display: block;
    padding: 6px 12px;
    margin-bottom: 8px;
    width: 100%;
}

.input::selection {
    background-color: #ce2b37;
    color: #fff;
}

.error {
    color: rgb(248 113 113);
}

input[type="submit"].action {
    background-color: #ce2b37;
    border: none;
    color: #fff;
    display: inline-block;
    margin: 20px 0;
    font-size: 20px;
    padding: 16px 40px;
    width: 100%;
}
input[type="submit"].action:hover {
    background-color: #ae242f;
}

.status-message {
    color: #fff;
    font-size: 20px;
}
