.page-title {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    font-size: 2rem;
    font-weight: 600;
}

.body {
    margin: 3rem auto;
    max-width: 800px;
    font-size: 1.5rem;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 500;
    border-bottom: 2px solid #015DB2;
    margin-bottom: 2rem;
}

.input-wrap {
    flex-direction: row;
    justify-content: start;
    align-items: center;
    margin: 0;
    padding: 20px;
    border-bottom: 1px solid #cccccc;
}

.input-wrap select {
    padding: 7px 16px;
}

.input-label-wrapper {
    width: 320px;
    text-align: start;
}

.input-wrap.err p {
    text-align: start;
}

.input-wrap.err select {
    border-color: var(--color-err);
}

.checkbox > div {
    background-color: #FFFFFF;
}

.note {
    font-weight: 500;
    padding: 1.5rem 3rem;
    color: #4D4D4D;
    background-color: #F2F2F2;
    border: 1px solid #CCCCCC;
}

.btn-back {
    color: #015DB2;
    border: 1px solid #015DB2;
    background-color: #FFFFFF
}

@media screen and (max-width: 768px) {
    .input-wrap {
        flex-direction: column;
        align-items: start;
    }

    .input-label-wrapper {
        width: 100%;
        margin-bottom: 1rem;
    }

    .checkbox-agree label {
        height: 60px;
        font-size: 15px;
    }
}