
.login_wrap {
    margin: 200px auto 100px;
    width: 60%;
    display: flex;
    border: 1px solid #e7e8eb;
    border-radius: 40px;
    overflow: hidden;
}
.login_wrap .login_sec {
    padding: 40px;
    width: 100%;
    background: #ffffff;
}
.login_wrap .login_sec h2 {
    font-size: 3.0rem;
    font-weight: 700;
    margin-bottom: 32px;
}
.login_wrap .login_sec .login_form {
    width: 70%;
    margin: 0 auto;
    font-size: 1.8rem;
}
.login_wrap .login_sec .login_message {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 1.8rem;
}
.login_form .login_input label {
    font-weight: 700;
    white-space: nowrap;
}
.login_form .login_input input {
    width: 100%;
    height: 60px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e7e8eb;
    border-radius: 30px;
    padding: 0 16px;
}
.login_form .confirm {
    display: flex;
    justify-content: center;
  }
.login_form .confirm .btn {
    width: 100%;
    height: 60px;
    font-size: 2.1rem;
}
.login_form .login_footer {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-flow: column;
}
.login_form .login_footer .footer_link {
    color: #631095;
    font-weight: 700;
    width: 100%;
}
.login_form .login_signup {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    font-size: 1.8rem;
}
.login_form .login_signup .footer_link {
    color: #631095;
    font-weight: 700;
}
.social_login_button {
    width: 100%;
    height: 60px;
    margin-top: 24px;
    font-size: 2.1rem;
    font-weight: 700;
    padding: 12px 16px;
    gap: 48px;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.social_login_button:hover {
    background-color: #f2f2f2;
    border-color: #aaa;
}
.social_login_button span {
    margin: 0 auto;
}
.social_login_button img {
    width: 48px;
    height: 48px;
}
/*  modile smart phone
---------------------------------------------- */
@media only screen and (max-width: 959px) {
    .login_wrap {
        width: 90%;
    }
    .login_wrap .login_sec .login_form {
        width: 100%;
    }
    .login_wrap .login_sec .login_form {
        width: 100%;
    }
    .login_wrap .login_sec {
        padding: 30px 20px;
    }
    .login_form .login_signup {
        display: block;
    }
    .login_form .login_signup a {
        margin-bottom: 10px;
        text-align: end;
    }
}