@charset "UTF-8";

:root {
    --color-white: #fff;
    --color-basic: #ffb743;
    --color-basic-alpha: #fca500;
    --color-gray: #e1e1e1;
    --color-orange: #ff7c48;
}

body {
    margin: 0;
    word-wrap: break-word;
    word-break: keep-all;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Pretendard", "Malgun Gothic", sans-serif;
    color: #131313;
    background: #fff;
}

a {
    color: #131313;
    text-decoration: none;
    box-sizing: border-box;
}

ul,
ol,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

fieldset,
img {
    border: 0 none;
}

input,
select,
textarea,
button {
    margin: 0;
    padding: 0;
    vertical-align: middle;
    box-sizing: border-box;
    font-family: "Pretendard", "Malgun Gothic", sans-serif;
}

input {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
select {
    border: 1px solid #e1e1e1;
    height: 28px;
    line-height: 28px;
    background: #fff;
    text-indent: 10px;
    outline: none;
    border-radius: 4px;
}

input:focus {
    border-color: #ccc;
    outline: 0;
}

button {
    border: 0 none;
    border-radius: 0;
    background-color: transparent;
    cursor: pointer;
}

::placeholder {
    color: #bbb;
    font-weight: 400;
    font-size: 15px;
}

#container {
    min-height: calc(100vh - 160px);
}

.inner {
    width: 95%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 0 100px;
}

.title-area {
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    z-index: 1;
    position: relative;
}

.title-area h2 {
    color: #000000;
    font-size: 2.125rem;
    font-weight: 700;
}

.round-wrap {
    width: 790px;
    margin: 0 auto;
    border: 1px solid #eee;
    border-radius: 60px;
    padding: 70px 90px 100px 90px;
    text-align: center;
    background: #fff;
}

.round-wrap .title-area {
    display: block;
    padding-bottom: 30px;
}

.round-wrap.login-form {
    padding-top: 16px;
    padding-bottom: 72px;
}

.round-wrap.login-form .title-area {
    padding-bottom: 10px;
}

.round-wrap.login-form .title-area h2 {
    margin: 0;
    line-height: 1.2;
}

.round-wrap .login-title-area {
    text-align: center;
    padding-bottom: 0;
    border-bottom: 0;
    line-height: 0;
}

.login-title-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.round-wrap > p {
    margin-top: 0;
    color: #666666;
    font-size: 1rem;
}

.round-wrap .btn {
    margin-right: 0;
    margin-left: 0;
}

.btn {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    margin: 0 2px;
}

.btn-full {
    width: 100%;
    height: 41px;
    padding: 0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-basic {
    background: var(--color-basic);
    color: #fff;
}

.btn-line-basic {
    border: 1px solid #007bff !important;
    color: #007bff !important;
    background-color: white !important;
    transition: all 0.3s ease !important;
}

.btn-line-basic:hover {
    background-color: #f8f9fa !important;
    color: #0056b3 !important;
    border-color: #0056b3 !important;
}

.btn-naver {
    background-color: #00c300;
    color: #fff;
}

.btn-kakao {
    background-color: #fee500;
    color: #2a1718;
}

.btn-google {
    background-color: #fff;
    color: #2a1718;
    border: 1px solid var(--color-gray);
}

.btn-apple {
    background-color: #fff;
    color: #2a1718;
    border: 1px solid var(--color-gray);
}

.btn-kakao,
.btn-naver,
.btn-google,
.btn-apple {
    text-align: left;
    padding-left: 30px;
    display: flex;
    align-items: center;
    font-weight: 600;
    border-radius: 5px;
    justify-content: center;
}

.simple-sns-box .btn i {
    display: inline-block;
    content: "";
    width: 25px;
    height: 25px;
    margin-right: 16px;
}

.simple-sns-box .btn i svg {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-naver > i {
    background-image: url("/images/member/login/naver-logo.svg");
}

.btn-kakao > i {
    background-image: url("/images/member/login/kakao-logo.svg");
}

.btn-apple > i {
    background-image: url("/images/member/login/apple-logo.svg");
}

.common-sns-box,
.simple-sns-box {
    margin-top: 31px;
}

.common-sns-box,
.simple-sns-box a {
    position: relative;
    margin-top: 15px;
    font-size: 1.125rem;
}

.common-sns-box > a {
    margin-top: 32px;
}

.sns-guide {
    position: relative;
    width: 100%;
    height: 27px;
    margin-top: 43px;
}

.sns-guide p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    padding: 0 16px;
    background-color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    z-index: 2;
    color: #333333;
}

.sns-guide span {
    display: block;
    position: absolute;
    top: 12px;
    border: 1px solid #eeeeee;
    width: calc(100% - 2px);
}

.login-form .common-sns-box:nth-child(2) > a {
    margin-top: 0;
}

.login-form .sns-guide {
    margin-top: 57px;
}

.round-wrap.login-form > p {
    color: #333333;
    font-weight: 500;
    font-size: 17px;
    margin-top: 1px;
}

.login {
    margin-top: 39px;
}

.login01 .login {
    margin-top: 12px;
}

.login01 .common-sns-box button {
    font-weight: 800;
    font-size: 1.125rem;
}

.login .common-sns-box .btn {
    margin-top: 17px;
    font-size: 1.125rem;
}

.login fieldset > input,
.login .password-field-wrap > input {
    display: block;
    width: 100%;
    height: 42px;
    border: 1px solid #dadada;
    border-radius: 10px;
    text-indent: 30px;
}

.login fieldset > input::placeholder,
.login .password-field-wrap > input::placeholder {
    color: #999999;
    font-size: 17px;
    font-weight: 500;
}

.login fieldset > input:hover,
.login .password-field-wrap > input:hover {
    border: 1px solid var(--color-basic);
}

.login #mb_pass {
    margin-top: 10px;
    padding-right: 48px;
}

.password-field-wrap {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    padding: 0;
}

.password-toggle-btn .eye-icon {
    position: relative;
    width: 18px;
    height: 12px;
    border: 2px solid #8f98a7;
    border-radius: 11px / 8px;
    box-sizing: border-box;
}

.password-toggle-btn .eye-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 4px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #8f98a7;
}

.password-toggle-btn.is-password-hidden .eye-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #8f98a7;
    transform: translate(-50%, -50%) rotate(-35deg);
}

.login-more {
    display: flex;
    position: relative;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 8px;
    margin-top: 15px;
}

.login-more .login-options {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-start;
    order: 2;
}

.login-more > a {
    order: 1;
}

.login-more .login-options .checkbox {
    position: static;
}

.login-more a {
    font-size: 0.938rem;
    color: #666666;
}

.login-more .id-find-link::after {
    display: inline-block;
    content: "|";
    color: #dddddd;
    margin: 0 10px 0 10px;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
    background: #fff;
}

.checkbox input:checked {
    background-image: url("/images/member/login/checked.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--color-basic);
    border: none;
}

.checkbox .text-cont {
    margin-left: 10px;
    font-size: 15px;
    color: #666666;
}

.login .text-cont {
    color: #444444;
    font-weight: 500;
    font-size: 0.938rem;
}

@media (max-width: 1200px) {
    .round-wrap {
        width: 100%;
        max-width: 790px;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .round-wrap.login-form {
        padding-top: 12px;
        padding-bottom: 36px;
    }

    .login01 .login {
        margin-top: 10px;
    }

    .title-area {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 1024px) {
    .title-area h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .inner {
        width: 100%;
        padding: 16px 20px 60px;
    }
}
