input, select, textarea {
    width: 100%;
    border: 1px solid #ccc;
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    box-shadow: 0px 0px 8px -5px #112D4E;
    color: #000;
    background: #fff;
    appearance: none;
}

.form-box {
    background-color: var(--background-color-tertiary);
    padding-top: 30px;
    padding-bottom: 30px;
}
.form-box h1 {
    color: var(--color-primary);
}


.form {
    background-color: var(--background-color-secondary);
    margin-left: 10%;
    width: 80%;
    /* padding: 10px; */
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 10px;
}
.form-item {
    margin-top: 20px;
    margin: 20px;
}
form label {
    font-weight: bold;
}
/* .disp-item {
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 0px 8px -5px #112D4E;
} */

.warn-form {
    color: red;
    margin: 10px;
}

.required-label {
    position: relative;
}
.required-label::after {
    position: absolute;
    content: '※';
    color: red;
    /* background-color: white; */
    border-radius: 3px;
    /* width: 100%; */
}

.btn-submit {
    text-align: center;
}
.btn-submit button {
    border: 1px solid #ccc;
    min-width: 100px;
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    /* box-shadow: 0px 0px 8px -5px #112D4E; */
    color: #ffffff;
    background-color: var(--background-color-primary);
    appearance: none;
    cursor : pointer;
}
