.form {
    font-size: .9em;
    color: var(--c-gray-dark);
}

.form-heading {
    width: 100%;
    margin: 15px auto 20px auto;
    font-size: 1.5em;
    text-align: center;
    letter-spacing: .08em;
    font-weight: 700;
}

.form .row {
    padding: 5px 0;
    margin-left: 0;
    margin-right: 0;
}

.form .message {
    padding: 5px 20px;
}

.form .error-message {
    padding: 5px 20px;
    color: var(--c-error);
}

.form .center {
    text-align: center;
}

.form input,
.form select {
    background-color: inherit;
    border: 1px solid var(--c-gray);
    border-radius: .2em;
}

.form input:focus {
    border-color: var(--c-red);
    box-shadow: 0 0 0 0.2rem rgba(161, 20, 45, .2);
}

.form .form-label::after {
    content: '  ';
}

.form .mandatory::after {
    content: ' *';
    color: var(--c-red);
}

.form input[class='button'],
.form input[type='submit'],
.form a.button {
    background-color: var(--c-red);
    border: 1px solid var(--c-red);
    border-radius: .2em;
    color: white;
    padding: .4em .6em;
    /* 5px 8px; */
    line-height: 1em;
    cursor: pointer;
}

.form-error-msg {
    color: var(--c-error);
    font-size: .8em;
}

.form-error input,
.form-error select {
    background-color: var(--c-error-bg);
}

.form .max-width input {
    width: 100%;
}

.address .form-title {
    text-align: center;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: .8em;
}

.form .only-show {
    border-top: none;
    border-right: none;
    border-bottom: 1px solid var(--c-gray-lighter);
    border-left: none;
    border-radius: 0;
    color: var(--c-gray-dark);
}

.form input.only-show:focus {
    border-top: none;
    border-right: none;
    border-bottom: 1px solid var(--c-gray);
    border-left: none;
    box-shadow: none;
}

fieldset.address {
    width: 100%;
}