.questionnaire-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.questionnaire-form h1 {
    text-align: center;
    font-size: 30px;
    padding: 20px;
    color: #4169E1;
}
.questionnaire-form p {
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
}
.questionnaire-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.questionnaire-form .input-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 600px;
    height: 50px;
}
.questionnaire-form .select-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600px;
    height: 100px;
}
.input-line .label {
    font-size: 16px;
    font-weight: bold;
    width: 150px;
}
.select-line .label {
    font-size: 16px;
    font-weight: bold;
    width: 600px;
    margin-bottom: 10px;
    margin-top: 20px;
}
.select-line .value {
    font-size: 16px;
    font-weight: bold;
    width: 600px;
    height: 50px;
    display: flex;
    flex-direction: row;
}
.select-line input {
    width: 100%;
    min-width: 140px;
    flex-grow: 1;
    text-indent: 15px;
    line-height: 50px;
    height: 50px;
    border: 1px solid #d9d9d9;
    user-select: none;
    font-size: 16px;
    font-weight: bold;
    outline: none;
}

.select-line .value div {
    min-width: 140px;
    flex-grow: 1;
    text-align: center;
    line-height: 50px;
    height: 50px;
    border: 1px solid #d9d9d9;
    margin-right: 10px;
    user-select: none;
}
.select-line .value .focus {
    border: none;
    background-color: #4169E1;
    color: #fff;
    font-size: 16px;
    transition: 200ms;
}
.input-line .value {
    font-size: 16px;
    font-weight: bold;
    width: 250px;
    flex-grow: 1;
    border: none;
    border-bottom: 2px solid #d9d9d9;
    outline:none
}
.submit-button {
    width: 300px;
    height: 50px;
    background-color: #4169E1;
    font-size: 20px;
    color: #fff;
    line-height: 50px;
    text-align: center;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 30px 0 80px 0;
    user-select: none;
}