/* ------------------------------------------------------------------------------------------------------------------ */
/* すでにログイン済み */

.custom-login-logged-in-message {
    font-size: 1rem;
    color: #535353;
    text-align: center;
    margin: 2.5rem 0 0px 0;
}

.custom-login-mypage-button {
    position: relative;
    text-align: center;
    background-color: #E9528E;
    border: none;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 2.5rem auto 0 auto;
    border-radius: 3.125rem;
    font-size: 1rem;
    padding: 0.75rem;
    color: #ffffff;
    width: 280px;
    height: 45px; 
    box-sizing: border-box;
}


.custom-login-mypage-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-login-logout-button {
    position: relative;
    text-align: center;
    background-color: #fff;
    border: none;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 2.5rem auto 0 auto;
    border-radius: 3.125rem;
    font-size: 1rem;
    padding: 0.75rem;
    color: #E9528E;
    width: 280px; 
    height: 45px;
    box-sizing: border-box;
    border: solid 1px #E9528E;
}

.custom-login-logout-button::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #E9528E;
    border-left: 1px solid #E9528E;
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* 未ログイン */

#custom-login-form {
    display: flex;
    flex-direction: column;
    margin-top: 2.5rem;
}

.custom-login-form-group label {
    font-size: 1rem;
    color: #535353;
    display: block;
    margin-bottom: 0.625rem;
}

.custom-login-form-group input {
    font-size: 0.875rem;
    padding: 0.9375rem;
    border: none;
    border-radius: 999px;
    background-color: #F5F5F5;
    width: 100%;
    color: #535353;
    box-sizing: border-box;
    margin-bottom: 1.25rem;
}

#custom-login-login-button {
    position: relative;
    text-align: center;
    background-color: #E9528E;
    border: none;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 1.25rem auto 0 auto;
    border-radius: 3.125rem;
    font-size: 1rem;
    padding: 0.75rem;
    color: #fff;
    width: 280px;
    height: 45px; 
    box-sizing: border-box;
}

#custom-login-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-login-register-button {
    position: relative;
    text-align: center;
    background-color: #fff;
    border: none;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 1.25rem auto 0 auto;
    border-radius: 3.125rem;
    font-size: 1rem;
    padding: 0.75rem;
    color: #E9528E;
    width: 280px; 
    height: 45px;
    box-sizing: border-box;
    border: solid 1px #E9528E;
}

.custom-login-register-button::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #E9528E;
    border-left: 1px solid #E9528E;
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}

.custom-login-password-reset-button {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    color: #535353;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}