.member_login {
    max-width: 420px;
    margin: 0 auto;
    /* padding: 40px 30px; */
    background-color: #ffffff;
    /* border: 1px solid #e0e3e6; */
    border-radius: 12px;
    /* box-shadow: 0 8px 24px rgba(15, 30, 60, 0.08); */
}

.member_login .login_form {
    display: block;
}

.member_login .login_box {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.member_login .input_row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.member_login .input_row label {
    font-size: 15px;
    font-weight: 600;
    color: #1f2c3d;
}

.member_login .input_row input {
    height: 46px;
    padding: 0 14px;
    border: 1px solid #c8d0da;
    font-size: 15px;
    color: #1f2c3d;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.member_login .input_row input:focus {
    outline: none;
    border-color: #2f6bff;
    box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.15);
    background-color: #ffffff;
}

.member_login .login_actions {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.member_login .btn_login {
    width: 100%;
    height: 48px;
    border: none;
    background: #42cddd;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.8s, color 0.2s 0.2s;
}

.member_login .btn_login:hover {
  color:#fff; box-shadow:0 84px 0 0 #113464 inset, 0 -84px 0 0 #113464 inset;
}

.member_login .btn_login:active {
    transform: translateY(0);
    box-shadow: inset 0 3px 10px rgba(33, 83, 209, 0.35);
}

.member_login .login_links {
    display: flex;
    justify-content: center;
    gap: 22px;
    font-size: 14px;
}

.member_login .login_links .btn_link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}
.member_login .login_links .btn_link+.btn_link::before{
    content:'';
    width: 1px;
    height: 10px;
    background-color: #333;
    position: absolute;
    left:-11px;
    top:50%;
    transform: translate(-50%,-50%);
}

.member_login .login_links .btn_link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.member_login .login_links .btn_link:hover::after {
    transform: scaleX(1);
}

@media (max-width: 560px) {
    .member_login {
        margin: 20px auto;
        padding: 30px 20px;
    }

    .member_login .login_links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .member_login .btn_login {
        height: 50px;
    }
}




.member_find {
    max-width: 560px;
    margin: 0 auto;
    /* padding: 42px 36px; */
    /* background-color: #ffffff; */
    /* border: 1px solid #e0e3e6; */
    /* border-radius: 14px; */
    /* box-shadow: 0 8px 24px rgba(15, 30, 60, 0.08); */
}

.member_find .find_form {
    display: block;
}

.member_find .find_form.hidden-state {
    display: none;
}

.member_find fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

.member_find legend {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

.member_find .find_box {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 28px;
}

.member_find .input_row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.member_find .input_row label {
    font-size: 15px;
    font-weight: 600;
    color: #1f2c3d;
}

.member_find .input_row .required {
    margin-left: 6px;
    color: #ff4d4f;
    font-size: 13px;
}

.member_find .input_row input {
    height: 48px;
    padding: 0 14px;
    border: 1px solid #c8d0da;
    /* border-radius: 8px; */
    font-size: 15px;
    color: #1f2c3d;
    /* background-color: #f8fafc; */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.member_find .input_row input:focus {
    outline: none;
    border-color: #2f6bff;
    box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.15);
    background-color: #ffffff;
}

.member_find .find_actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.btn_back_login_result{
    margin-top:20px
}
.btn_back_login_result,
.member_find .btn_find_id,
.member_find .btn_back_login {
    min-width: 160px;
    height: 46px;
    font-size: 15px;
    font-weight: 600;
    line-height: 46px;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn_back_login_result,
.member_find .btn_find_id {
    border: none;
    background: #42cddd;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.8s, color 0.2s 0.2s;
}
.btn_back_login_result:hover,
.member_find .btn_find_id:hover {
  color:#fff; box-shadow:0 84px 0 0 #113464 inset, 0 -84px 0 0 #113464 inset;
}

.member_find .btn_back_login {
    border: 1px solid #c8d0da;
    color: #1f2c3d;
    background-color: #ffffff;
    text-decoration: none;
    display: inline-block;
}

.member_find .btn_back_login:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(69, 80, 101, 0.15);
}

.member_find .find_result {
    margin-top: 26px;
    /* padding: 18px 20px; */
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.6;
    color: #455065;
    /* background-color: #f5f8fc; */
    /* border: 1px solid transparent; */
    /* min-height: 54px; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.member_find .find_result.hidden {
    display: none;
}

.member_find .find_result.loading {
    color: #2153d1;
    border-color: rgba(47, 107, 255, 0.3);
    background-color: rgba(47, 107, 255, 0.08);
}

.member_find .find_result.success {
    color: #1c6f3c;
    border-color: rgba(46, 152, 78, 0.35);
    background-color: rgba(46, 152, 78, 0.08);
}

.member_find .find_result.error {
    color: #c93737;
    border-color: rgba(201, 55, 55, 0.35);
    background-color: rgba(201, 55, 55, 0.08);
}

.member_find .find_result strong {
    font-weight: 700;
}

@media (max-width: 600px) {
    .member_find {
        padding: 32px 22px;
    }

    .member_find .find_actions {
        flex-direction: column;
    }

    .member_find .btn_find_id,
    .member_find .btn_back_login {
        width: 100%;
        line-height: 46px;
    }
}


.member_find_pw {
    max-width: 600px;
    margin: 0 auto;
    /* padding: 46px 38px; */
    background-color: #ffffff;
    /* border: 1px solid #e0e3e6; */
    /* border-radius: 16px; */
    /* box-shadow: 0 10px 28px rgba(15, 30, 60, 0.08); */
}

.member_find_pw .find_pw_form {
    display: block;
}

.member_find_pw fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

.member_find_pw legend {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

.member_find_pw .find_pw_box {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 24px;
}

.member_find_pw .input_row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.member_find_pw .input_row label {
    font-size: 15px;
    font-weight: 600;
    color: #1f2c3d;
}

.member_find_pw .input_row .required {
    margin-left: 6px;
    color: #ff4d4f;
    font-size: 13px;
}

.member_find_pw .input_row input {
    height: 48px;
    padding: 0 14px;
    border: 1px solid #c8d0da;
    /* border-radius: 8px; */
    font-size: 15px;
    color: #1f2c3d;
    /* background-color: #f8fafc; */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.member_find_pw .input_row input:focus {
    outline: none;
    border-color: #2f6bff;
    box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.15);
    background-color: #ffffff;
}

.member_find_pw .find_pw_notice {
    padding: 18px 20px;
    background-color: #f5f8fc;
    /* border-radius: 10px; */
    border: 1px solid rgba(47, 107, 255, 0.18);
    font-size: 14px;
    color: #26436d;
    line-height: 1.6;
    margin-bottom: 26px;
}

.member_find_pw .find_pw_actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.member_find_pw .btn_find_pw,
.member_find_pw .btn_pw_back {
    min-width: 170px;
    height: 48px;
    /* border-radius: 8px; */
    font-size: 16px;
    font-weight: 600;
    line-height: 48px;
    text-align: center;
    transition: all 0.8s, color 0.2s 0.2s;
}

.member_find_pw .btn_find_pw {
    border: none;
    color: #ffffff;
    background: #42cddd;
    cursor: pointer;
}

.member_find_pw .btn_find_pw:hover {
  color:#fff; box-shadow:0 84px 0 0 #113464 inset, 0 -84px 0 0 #113464 inset;
}

.member_find_pw .btn_pw_back {
    border: 1px solid #c8d0da;
    color: #1f2c3d;
    background-color: #ffffff;
    text-decoration: none;
    display: inline-block;
}

.member_find_pw .btn_pw_back:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(69, 80, 101, 0.15);
}

.member_find_pw .find_pw_form.hidden-state {
    display: none;
}

.member_find_pw .find_pw_result {
    margin-top: 26px;
    padding: 18px 20px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #455065;
    background-color: #f5f8fc;
    border: 1px solid transparent;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.member_find_pw .find_pw_result.hidden {
    display: none;
}

.member_find_pw .find_pw_result.loading {
    color: #2153d1;
    border-color: rgba(47, 107, 255, 0.3);
    background-color: rgba(47, 107, 255, 0.08);
}

.member_find_pw .find_pw_result.success {
    /* color: #1c6f3c; */
    /* border-color: rgba(46, 152, 78, 0.35); */
    /* background-color: rgba(46, 152, 78, 0.08); */
}

.member_find_pw .find_pw_result.error {
    color: #c93737;
    border-color: rgba(201, 55, 55, 0.35);
    background-color: rgba(201, 55, 55, 0.08);
}

.member_find_pw .find_pw_result strong {
    font-weight: 700;
    display: block;
}

@media (max-width: 640px) {
    .member_find_pw {
        padding: 34px 22px;
    }

    .member_find_pw .find_pw_actions {
        flex-direction: column;
    }

    .member_find_pw .btn_find_pw,
    .member_find_pw .btn_pw_back {
        width: 100%;
        line-height: 48px;
    }
}
