/* ------------------------------------------------------------------------------------------------------------------ */
/* 共通 */

.custom-password-reset-message {
    font-size: 1rem;
    color: var(--custom-text-color);
    text-align: center;
    margin: 2.5rem 0 1.25rem 0;
}

.custom-password-reset-form-group label {
    font-size: 1rem;
    color: var(--custom-text-color);
    display: block;
    margin-bottom: 0.625rem;
}

.custom-password-reset-form-group input {
    font-size: 0.875rem;
    padding: 0.9375rem;
    border: 1.5px solid transparent;
    border-radius: 999px;
    background-color: var(--custom-bg-gray);
    width: 100%;
    color: var(--custom-text-color);
    box-sizing: border-box;
    margin-bottom: 1.25rem;
    outline: none;
    transition: border-color 0.2s, background-color 0.2s;
}

.custom-password-reset-form-group input:focus {
    border-color: var(--custom-purple);
    background-color: var(--custom-white);
}

/* 初めからやり直すボタン */
.custom-password-reset-restart-button {
    margin: 1.25rem auto 2.5rem auto;
    display: block;
    font-size: 0.875rem;
    color: var(--custom-gray-dark);
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* STEP 1: 認証コードを送信ボタン */

#custom-password-reset-send-code {
    position: relative;
    text-align: center;
    background-color: var(--custom-purple);
    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: var(--custom-white);
    width: 280px;
    height: 45px;
    box-sizing: border-box;
    cursor: pointer;
}

#custom-password-reset-send-code::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid var(--custom-white);
    border-left: 1px solid var(--custom-white);
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* STEP 2: 認証するボタン */

#custom-password-reset-verify-button {
    position: relative;
    text-align: center;
    background-color: var(--custom-purple);
    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: var(--custom-white);
    width: 280px;
    height: 45px;
    box-sizing: border-box;
    cursor: pointer;
}

#custom-password-reset-verify-button::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid var(--custom-white);
    border-left: 1px solid var(--custom-white);
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* STEP 3: パスワードを変更ボタン */

#custom-password-reset-final-submit {
    position: relative;
    text-align: center;
    background-color: var(--custom-purple);
    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: var(--custom-white);
    width: 280px;
    height: 45px;
    box-sizing: border-box;
    cursor: pointer;
}

#custom-password-reset-final-submit::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid var(--custom-white);
    border-left: 1px solid var(--custom-white);
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}
