@import url('style.css');

.custom--header {
    background: url('../img/header.svg');

    /* background: no-repeat url("../../media/examples/lizard.png"); */
    /* width: 100%; */

    font-family: Nunito;
    font-style: normal;
    font-weight: 300;
    font-size: 2rem;
    line-height: 48px;
    padding: 24px 0px;
    background-color: #373eff;
    /* identical to box height, or 150% */

    text-align: center;

    /* White */

    color: #ffffff;
}

.custom--section {
    width: 90%;
    margin: 0 auto;
    max-width: 380px;
}

.custom--headline {
    font-family: Nunito;
    font-style: normal;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-align: center;
    color: #5f65ff;

    margin-top: 45px;
    margin-bottom: 45px;
}

.custom--select-box {
    border: 1px solid #ced1d2;
    box-sizing: border-box;
    border-radius: 8px;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 14px 20px;
}

.custom--select-input {
    margin-right: 1rem;
}

.custom--select-check {
    width: 16px;
    height: 16px;
    /* background: #f7f7f7; */
    border: 1.2px solid #ced1d2;
    box-sizing: border-box;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom--select-check.checked {
    background-color: #373eff;
    border: none;
}

.custom--radio-box {
    border: 1px solid #ced1d2;
    box-sizing: border-box;
    border-radius: 8px;
    height: 72px;
    display: flex;
    align-items: center;
    padding: 14px 20px;
}

.custom--radio-check {
    width: 16px;
    height: 16px;
    /* background: #f7f7f7; */
    border: 1.2px solid #ced1d2;
    box-sizing: border-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom--radio-check.checked {
    background-color: #373eff;
    border: none;
}

.custom--title {
    font-family: Noto Sans KR;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #363636;
}

.custom--label {
    font-family: Noto Sans KR;
    font-style: normal;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 0.75rem;

    color: #868686;
}

.custom--division {
    width: 100%;
    height: 1px;
    background-color: #ced1d2;
    margin: 50px 0px;
}

.custom--input {
    width: 100%;
    height: 64px;
    font-size: 1.25rem;
    font-size: 1rem;
    padding: 16px 24px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
    border-radius: 8px;
}

.custom--btn {
    width: 100%;
    height: 64px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 16px;
    background: #373eff;
    border-radius: 8px;

    /* text */
    /* KR/Button 3 - 16 */

    font-family: Noto Sans KR;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 23px;
    color: #ffffff;
}

.imgBtn {
    margin-bottom: 1rem;
}

li:last-child .imgBtn {
    margin-bottom: 0px;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.text-start {
    text-align: start;
}

.gap20 {
    gap: 20px;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

@media (max-width: 414px) {
    .custom--title {
        font-size: 0.875rem;
        /* line-height: 1.5rem; */
    }

    .imgBtn {
    }
}
