@charset "utf-8";

.main-content-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-content-header h1 {
    font-size: 24px;
    color: #006cb8;
    padding: 10px;
}

#yemain h2 {
    margin-top: 1em;
}

.form-table {
    border-collapse: collapse;
    width: 100%;
}
.form-table tr,
.form-table td {
    border: solid 1px #ccc;
}
.form-table tr td:first-child {
    white-space: nowrap;
    background-color: #ebebeb;
}
.form-table td {
    padding: 0.5em 0.8em;
}
.form-table input[type="text"],
.form-table input[type="email"],
.form-table select,
.form-table textarea {
    border: solid 1px #999;
    padding: 0.2em;
    box-sizing: border-box;
    font-family: sans-serif;
}
.form-table textarea {
    resize: vertical;
    width: 100%;
    min-height: 120px;
}
.form-table ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.form-table ul li {
    line-height: 2em;
}
.form-table label {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.form-table label input[type="radio"] {
    margin: 0 0.5em 0 0;
}
.form-table dd {
    margin: 0;
}
.form-table dd + dt {
    margin-top: 0.5em;
}
.submit-button {
    display: block;
    margin: 1em auto;
    font-size: 24px;
    border: solid 3px #006cb8;
    background-color: #006cb8;
    color: white;
    line-height: 1em;
    padding: 0.2em 1.2em;
    cursor: pointer;
    transition: all 0.2s ease 0s;
}
.submit-button:hover {
    color: #006cb8;
    background-color: white;
}

.input-example {
    display: block;
    color: #333;
    margin-top: 0.5em;
}
.input-suffix {
    margin-left: 0.2em;
}
.w-100 {
    width: 100%;
}
.w-30 {
    width: 30%;
}
