header {
    display: flex;
    align-items: center;
    background: #fff;
    height: 5rem;
    padding: 0 1.5rem;
}
header h1 {
    width: 15rem;
}
header h1 img {
    width: 100%;
}
header button {
    width: 2.5rem;
}
header button img {
    width: 100%;
}

main {
    padding: 2rem 1.5rem 10rem;
    height: calc(100% - 5rem);
    position: relative;
}

/* 로그인 */
main > h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #be1e2d;
}
main > p {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    color: #817779;
}
main .logo {
    width: 12rem;
    margin: 0 auto 4rem;
}
main .logo img {
    width: 100%;
}
main #loginFrm {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
}
main #loginFrm .inputWrap .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
main #loginFrm .inputWrap .title h3 {
    font-size: 1.4rem;
    font-weight: 800;
}
main #loginFrm .inputWrap .title p {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a0a0;
}
main #loginFrm .inputWrap .title p a {
    font-size: 1.4rem;
    color: #be1e2d;
    font-weight: 600;
}
main #loginFrm input {
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
    border-radius: 5rem;
    background: #fff;
    width: 100%;
    color: #b1b1b1;
    border: 1px solid #d6d6d6;
}
main #loginFrm #userId {
    margin-bottom: 0.5rem;
}
main #loginFrm .password {
    position: relative;
}
main #loginFrm .password button {
    font-size: 1.4rem;
    color: #be1e2d;
    font-weight: 600;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}
main #loginFrm > button {
    padding: 2rem;
    font-size: 2rem;
    background: #be1e2d;
    color: #fff;
    margin: 0;
    width: 100%;
    border-radius: 5rem;
    margin-top: 8rem;
}
main #loginFrm .joinFind {
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
}
main #loginFrm .joinFind > a {
    font-size: 1.4rem;
    color: #be1e2d;
}
main #loginFrm .joinFind .find {
    font-size: 1.4rem;
    display: flex;
    gap: 1rem;
}
main #loginFrm .joinFind .find a {
    font-size: 1.4rem;
}

/* 회원가입 */
main #joinFrm {}
main #joinFrm > p {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 2rem;
}
main #joinFrm .inputWrap {
    margin-bottom: 3rem;
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    width: 100%;
}
main #joinFrm .inputWrap h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}
main #joinFrm .inputWrap .idWrap {
    width: 100%;
    position: relative;
}
main #joinFrm .inputWrap .idWrap input {
    padding: 1.5rem 10rem 1.5rem 2rem;
    font-size: 1.4rem;
    border-radius: 5rem;
    background: #fff;
    width: 100%;
    color: #b1b1b1;
    border: 1px solid #d6d6d6;
}
main #joinFrm .inputWrap .idWrap button {
    font-size: 1.4rem;
    background: none;
    color: #be1e2d;
    position: absolute;
    right: 0;
    width: 10rem;
    height: 100%;
    padding: 0;
}
main #joinFrm .inputWrap .pwWrap {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    width: 100%;
}
main #joinFrm .inputWrap .pwWrap input {
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
    border-radius: 5rem;
    background: #fff;
    width: 100%;
    color: #b1b1b1;
    border: 1px solid #d6d6d6;
}
main #joinFrm .inputWrap .pwWrap span {
    font-size: 1.2rem;
    line-height: 1.4;
    display: none;
}
main #joinFrm .inputWrap .pwWrap span.correct {
    color: #50ab2a;
}
main #joinFrm .inputWrap .pwWrap span.wrong {
    color: red;
}
main #joinFrm .inputWrap input {
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
    border-radius: 5rem;
    background: #fff;
    width: 100%;
    color: #b1b1b1;
    border: 1px solid #d6d6d6;
}
main #joinFrm .inputWrap .checkWrap {
    display: flex;
    gap: 1rem;
    width: 100%;
}
main #joinFrm .inputWrap .checkWrap .check {
    width: 50%;
    position: relative;
    height: 5.5rem;
}
main #joinFrm .inputWrap .checkWrap .check label {
    color: #b4b4b4;
    font-size: 1.4rem;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #b5b5b5;
}
main #joinFrm .inputWrap .checkWrap .check input {
    padding: 0;
    width: 100%;
    height: 100%;
}
main #joinFrm .inputWrap .checkWrap .check input:checked + label {
    background: #f5f0f5;
    font-weight: 600;
    color: #be1e2d;
    border: 1px solid #be1e2d;
}
main #joinFrm .inputWrap .telFlex {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    width: 100%;
}
main #joinFrm .inputWrap .telWrap {
    display: flex;
    gap: 1rem;
    position: relative;
    width: 100%;
}
main #joinFrm .inputWrap .telWrap > input {
    width: 100%;
}
main #joinFrm .inputWrap .telWrap button {
    font-size: 1.4rem;
    background: none;
    color: #be1e2d;
    position: absolute;
    right: 0;
    width: 10rem;
    height: 100%;
    padding: 0;
}
main #joinFrm .inputWrap button {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.4rem;
    background: #be1e2d;
    color: #fff;
}
main #joinFrm .inputWrap .certification {
    display: none;
    width: 100%;
    position: relative;
}
main #joinFrm .inputWrap .certification p {
    position: absolute;
    right: 9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    text-align: right;
}
main #joinFrm .inputWrap .certification input {
    width: 100%;
}
main #joinFrm .inputWrap .certification button {
    position: absolute;
    right: 0;
    height: 100%;
    padding: 0;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    color: #be1e2d;
    width: 10rem;
    background: none;
}
main #joinFrm .inputWrap .certificationDone {
    font-size: 1.2rem;
    display: none;
    color: #be1e2d;
    margin: 0;
}
main #joinFrm .vaccinationSel {
    position: relative;
}
main #joinFrm .vaccinationSel > a {
    width: 100%;
    border-radius: 1rem;
    padding: 2rem 6rem 2rem 2rem;
    display: flex;
    align-items: center;
    background-color: #fff;
    background-image: url(../img/arrow5.png);
    background-repeat: no-repeat;
    background-size: 2rem;
    background-position: right 2rem center;
    box-shadow: 1px 1px 10px 1px #eaecf2;
}
main #joinFrm .vaccinationSel > a span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1.4rem;
        color: #787777;
}
main #joinFrm .vaccinationSel .vaccinationOption {
    box-shadow: 1px 1px 10px 1px #eaecf2;
    display: none;
    flex-flow: column nowrap;
    background: #fff;
    height: 20rem;
    overflow-y: auto;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    position: absolute;
    left: 0;
    top: 5.5rem;
    width: 100%;
    z-index: 2222;
}
main #joinFrm .vaccinationSel .vaccinationOption label {
    font-size: 1.4rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #787777;
    border-top: 1px solid #c4c4c4;
}
main #joinFrm .vaccinationSel .vaccinationOption label input {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 100%;
    background-color: #fff;
    background-image: url(../img/check-off.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 0;
}
main #joinFrm .vaccinationSel .vaccinationOption label input:checked {
    background-image: url(../img/check-on.png);
    background-color: #be1e2d;
}
main #joinFrm .vaccinationSel .vaccinationOption button {
    padding: 2rem 0;
    font-size: 1.6rem;
    color: #fff;
    background: #be1e2d;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
main #joinFrm .agreeWrap {
    padding-bottom: 3rem;
    width: 100%;
}
main #joinFrm .agreeWrap h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
main #joinFrm .agreeWrap h3 img {
    width: 1.5rem;
}
main #joinFrm .agreeWrap .toggleAgree {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main #joinFrm .agreeWrap .toggleAgree label {
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
main #joinFrm .agreeWrap .toggleAgree label input {
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
    background-color: #fff;
    background-image: url(../img/check-off.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
main #joinFrm .agreeWrap .toggleAgree label input:checked {
    background-image: url(../img/check-on.png);
    background-color: #be1e2d;
}
main #joinFrm .agreeWrap .toggleAgree button {
    width: 1.5rem;
}
main #joinFrm .agreeWrap .toggleAgree button img {
    width: 100%;
}
main #joinFrm .agreeWrap .mustAgreeWrap {
    display: none;
    flex-flow: column nowrap;
    gap: 1.5rem;
    margin: 1.5rem 0 0 3rem;
}
main #joinFrm .agreeWrap .mustAgreeWrap.active {
    display: flex;
}
main #joinFrm .agreeWrap .mustAgreeWrap .mustAgree {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
main #joinFrm .agreeWrap .mustAgreeWrap .mustAgree label {
    font-size: 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
    width: 100%;
    color: #b2b2b2;
}
main #joinFrm .agreeWrap .mustAgreeWrap .mustAgree label input {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 100%;
    background-color: #fff;
    background-image: url(../img/check-off.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
main #joinFrm .agreeWrap .mustAgreeWrap .mustAgree label input:checked {
    background-image: url(../img/check-on.png);
    background-color: #be1e2d;
}
main #joinFrm .agreeWrap .mustAgreeWrap .mustAgree label a {
    position: absolute;
    right: 0;
    font-size: 1.4rem;
    color: #be1e2d;
}
main #joinFrm .agreeWrap .mustAgreeWrap .mustAgree label a img {
    width: 100%;
}
main #joinFrm > button {
    padding: 2rem;
    font-size: 2rem;
    background: #be1e2d;
    color: #fff;
    margin-top: 1rem;
    border-radius: 5rem;
    width: 100%;
}

/* 찾기 */
main #findFrm .inputWrap {
    margin-bottom: 3rem;
}
main #findFrm .inputWrap h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
}
main #findFrm .inputWrap input {
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
    border-radius: 5rem;
    background: #fff;
    width: 100%;
    color: #b1b1b1;
    border: 1px solid #d6d6d6;
}
main #findFrm .inputWrap #userName {
    width: 100%;
}
main #findFrm .inputWrap .telWrap {
    position: relative;
    margin-bottom: 1.5rem;
}
main #findFrm .inputWrap .telWrap > input {
    width: 100%;
    padding-right: 10rem;
}
main #findFrm .inputWrap .telWrap button {
    font-size: 1.4rem;
    background: none;
    color: #be1e2d;
    position: absolute;
    right: 0;
    width: 10rem;
    height: 100%;
    padding: 0;
}
main #findFrm .inputWrap .certification {
    position: relative;
    display: none;
}
main #findFrm .inputWrap .certification p {
    position: absolute;
    right: 9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    text-align: right;
}
main #findFrm .inputWrap .certification input {
    width: 100%;
    padding-right: 10rem;
}
main #findFrm .inputWrap .certification button {
    position: absolute;
    right: 0;
    height: 100%;
    padding: 0;
    padding: 0 1.5rem;
    font-size: 1.4rem;
    background: none;
    color: #be1e2d;
    width: 10rem;
}
main #findFrm .inputWrap .certificationDone {
    font-size: 1.2rem;
    display: none;
    color: blue;
}
main #findFrm > button {
    padding: 2rem;
    font-size: 2rem;
    background: #be1e2d;
    color: #fff;
    width: calc(100% - 3rem);
    border-radius: 5rem;
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
}
main .result {
    display: none;
    text-align: center;
}
main .result p {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}
main .result #foundId {
    padding: 1.5rem 0;
    border-radius: 5rem;
    border: 1px solid #b3b3b3;
    color: #b3b3b3;
    font-size: 1.4rem;
    width: 100%;
}
main .result a {
    padding: 2rem;
    font-size: 1.8rem;
    background: #be1e2d;
    color: #fff;
    border-radius: 5rem;
    text-align: center;
    display: block;
    position: absolute;
    bottom: 6rem;
    width: calc(100% - 3rem);
    left: 50%;
    transform: translateX(-50%);
}
main #changeFrm {
    display: none;
}
main #changeFrm .inputWrap h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
}
main #changeFrm .inputWrap .pwWrap {
    display: flex;
    flex-flow: column nowrap;
    gap: 2rem;
}
main #changeFrm .inputWrap .pwWrap input {
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
    border-radius: 5rem;
    background: #fff;
    width: 100%;
    color: #b1b1b1;
    border: 1px solid #d6d6d6;
}
main #changeFrm .inputWrap .pwWrap span {
    font-size: 1.2rem;
    display: none;
}
main #changeFrm .inputWrap .pwWrap span.correct {
    color: #50ab2a;
}
main #changeFrm .inputWrap .pwWrap span.wrong {
    color: red;
}
main #changeFrm > button {
    padding: 2rem;
    font-size: 1.8rem;
    background: #be1e2d;
    color: #fff;
    margin: 0;
    width: calc(100% - 3rem);
    border-radius: 5rem;
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
}

/* 선택 */
main .info {}
main .info .status {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}
main .info .status span {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 100%;
    background: #cccccc;
}
main .info .status span.on {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #25c1da, #338dc8);
}
main .info .status .line {
    width: 5rem;
    height: 0.2rem;
    background: #cccccc;
    margin: 0;
}
main .info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
main .info p {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 4rem;
}
main .info form {
    display: flex;
    flex-flow: row wrap;
    gap: 1.5rem;
}
main .info form .input {
    width: calc(100% / 3 - 1rem);
    border-radius: 5rem;
    background: #fff;
    border: 1px solid #c2c6cb;
    height: 4rem;
    position: relative;
    overflow: hidden;
}
main .info form .input input {
    width: 100%;
    height: 100%;
}
main .info form .input label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
main .info form .input input:checked + label {
    background: linear-gradient(to right, #25c1da, #338dc8);
    color: #fff;
    border: none;
}
main .info form > button {
    position: absolute;
    bottom: 4rem;
    width: calc(100% - 3rem);
    left: 50%;
    transform: translateX(-50%);
    background: #be1e2d;
    border-radius: 1rem;
    color: #fff;
    padding: 2rem 0;
    font-size: 1.6rem;
}
main .info #infoFrm .buttonWrap {
    display: flex;
    gap: 1.5rem;
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
}
main .info #infoFrm .buttonWrap button {
    width: 50%;
    border-radius: 1rem;
    font-size: 1.6rem;
    padding: 2rem 0;
    background: #e6e6e6;
    color: #6c727b;
}
main .info #infoFrm .buttonWrap button:nth-of-type(2) {
    background: #be1e2d;
    color: #fff;
}

#warningModal {
    display: none;
    align-items: center;
    padding: 0 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#warningModal .box {
    width: 100%;
    background: #fff;
    padding-top: 4rem;
    text-align: center;
}
#warningModal .box h2 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}
#warningModal .box p {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #7f8080;
    margin-bottom: 4rem;
    padding: 0 3rem;
    text-align: center;
}
#warningModal .box .selectWrap {
    display: flex;
    flex-flow: column nowrap;
    gap: 2rem;
    padding: 0 1.5rem 4rem;
}
#warningModal .box .selectWrap .mustAgree {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
#warningModal .box .selectWrap .mustAgree label {
    font-size: 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
    width: 100%;
    color: #b2b2b2;
}
#warningModal .box .selectWrap .mustAgree label input {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 100%;
    background-color: #fff;
    background-image: url(../img/check-off.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
#warningModal .box .selectWrap .mustAgree label input:checked {
    background-image: url(../img/check-on.png);
    background-color: #be1e2d;
}
#warningModal .box .selectWrap .mustAgree label a {
    position: absolute;
    right: 0;
    font-size: 1.4rem;
    color: #be1e2d;
}
#warningModal #checkBtn {
    padding: 1.5rem 0;
    background: #be1e2d;
    color: #fff;
    font-size: 1.8rem;
    width: 100%;
}
#warningModal #noBtn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    width: 100%;
    gap: 0.5rem;
    color: #b5b5b5;
    font-size: 1.4rem;
}
#warningModal #noBtn img {
    width: 0.8rem;
}

#intro {
    padding: 0 1.5rem 6rem;
    background-image: url(../img/img.png);
    background-position: top right;
    background-size: 35rem;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
}
#intro h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
#intro h2 em {
    font-size: 2rem;
    color: #be1e2d;
    font-weight: 900;
}
#intro p {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    text-align: left;
}
#intro > .buttonWrap {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.5rem;
}
#intro > .buttonWrap a {
    text-align: center;
    width: 100%;
    padding: 2rem 0;
    font-size: 1.4rem;
    font-weight: 800;
    background: #fff;
    border: 1px solid #c0c1c1;
    color: #5a5a5a;
    border-radius: 5rem;
}
#intro > .buttonWrap a:nth-of-type(1) {
    color: #fff;
    background: #be1e2d;
    border: 1px solid #be1e2d;
}