.custom-user-login-page {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Noto Sans JP', sans-serif;
    background: #fff;
    font-weight: 500;
    padding-inline: 1.25rem;
}

.custom-user-login-page,
.custom-user-login-page * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.custom-user-login-page-title {
    font-size: 24px;
    font-weight: 500;
    color: #E9528E;
    text-align: center;
    margin-top: 40px;
}

.custom-user-login-page-content {
    height: 100%;
    overflow-y: auto;
}

#custom-user-login-form {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.custom-user-login-form-group label {
    font-size: 16px;
    color: #535353;
    display: block;
    margin-bottom: 8px;
}

.custom-user-login-form-group input {
    font-size: 14px;
    padding: 13px;
    border: none;
    border-radius: 25px;
    background-color: #F5F5F5;
    width: 100%;
    color: #535353;
}

.cul-error-message {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    color: #E9518E;
}

#cul-login-button {
    position: relative;
    text-align: center;
    font-size: 16px;
    background-color: #E9518E;
    color: #fff;
    border-radius: 50px;
    width: 282px;
    height: 40px;
    border: none;
    transition: background-color 0.3s;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cul-login-button::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}

.custom-user-register-button {
    position: relative;
    text-align: center;
    font-size: 16px;
    background-color: #fff;
    color: #7D40A0;
    border-radius: 50px;
    width: 282px;
    height: 40px;
    border: solid 1px #7D40A0;
    transition: background-color 0.3s;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-user-register-button::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #7D40A0;
    border-left: 1px solid #7D40A0;
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}


.custom-user-password-reset-button {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #E9518E;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.cul-login-note {
    margin-top: 20px;
    font-size: 14px;
    color: #AAAAAC;
    text-align: center;
}

.cul-login-note a {
    color: #E9518E;
    text-decoration: underline;
}

.custom-user-login-logged-in-message {
    font-size: 16px;
    color: #535353;
    text-align: center;
    margin: 40px 0 0px 0;
}

.custom-user-login-mypage-button,
.custom-user-login-logout-button {
    position: relative;
    text-align: center;
    font-size: 16px;
    border-radius: 50px;
    width: 282px;
    height: 40px;
    border: none;
    transition: background-color 0.3s;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-user-login-mypage-button {
    background-color: #E9518E;
    color: #fff;
}


.custom-user-login-logout-button {
    background-color: #AAAAAC; 
    color: #fff;
}

.custom-user-login-mypage-button::before,
.custom-user-login-logout-button::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}

.cul-line-link-button {
    display: flex;
    position: relative;
    background-color: #06C755;
    color: white;
    padding: 0.75rem;
    border-radius: 3.125rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    z-index: 1;
    flex-direction: row;
    align-items: center;
    gap: 0.1875rem;
    justify-content: center;
    margin: 0 auto;
    height: 2.5rem;
    width: 17.625rem;
}

.cur-method-line {
  display: flex;
  align-items: center;
  text-align: center;
  color: #535353;
  font-size: 1rem;
  margin: 20px 0;
}

.cur-method-line::before,
.cur-method-line::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #AAAAAC;
  margin: 0 10px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* パスワードリセット */

.custom-user-password-reset-page {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Noto Sans JP', sans-serif;
    background: #fff;
    font-weight: 500;
    padding-inline: 1.25rem;
}

.custom-user-password-reset-page,
.custom-user-password-reset-page * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.custom-user-password-reset-page-content {
    height: 100%;
    overflow-y: auto;
}

.custom-user-password-reset-message {
    font-size: 16px;
    color: #535353;
    text-align: center;
    margin: 40px 0 20px 0;
}

#reset-step-1 input,
#reset-step-2 input,
#reset-step-3 input {
    font-size: 14px;
    padding: 13px;
    border: none;
    border-radius: 25px;
    background-color: #F5F5F5;
    width: 100%;
    color: #535353;
}

#reset-send-sms,
#reset-verify-code,
#reset-final-submit {
    position: relative;
    text-align: center;
    font-size: 16px;
    background-color: #E9518E;
    color: #fff;
    border-radius: 50px;
    width: 282px;
    height: 40px;
    border: none;
    transition: background-color 0.3s;
    margin: 40px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#reset-send-sms::before,
#reset-verify-code::before,
#reset-final-submit::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}

.custom-reset-restart-button {
    margin: 16px auto 0 auto;
    display: block;
    font-size: 14px;
    color: #AAAAAC;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
}

.custom-user-password-reset-sub-message{
    font-size: 0.825rem;
    margin: 2.5rem 0 1.25rem 0;
    color: #E9518E;
    text-align: center;
}