body {
    background-color: #fff;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    padding: 10px;
}

a:link,
a:visited {
    color:#4155ff;
    text-decoration: none;
}

a:hover,
a:active {
    color:#b62323;
}

li {
    margin-bottom: 1em;
}

h1, h2 {
    font-weight: 900;
}

label {
    cursor: pointer;
    display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select {
    border: 1px solid #999;
    border-radius: 5px;
    color: #666;
    font-size: larger;
    font-weight: 500;
    padding: 0.5em;
    width: calc(100% - (0.5em * 2));
}

select {
    width:100%;
}

.column {
    margin-bottom: 1.5em;
    width: 100%;
}

#name_field_matte {
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    flex-wrap:nowrap;
    width:100%;
}

#name_field_matte .column {
    width: calc(50% - 5px);
}

.button {
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 1em;
    min-width: 10em;
    padding: 1em 1em;
}

.primary.button {
    background-color: #4155ff;
    color: #fff;
}

.secondary.button {
    background-color: #fff;
    border: 1px solid #999;
    color: #666;
}

.danger.button {
    background-color: #b62323;
    color: #fff;
}

.validation_error {
    color: #b62323;
    font-size: smaller;
}