/** * 新規登録メール送信中のスタイル login.tpl */
/** メール送信中オーバーレイ */
.mailSendLoadingOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
/** メール送信中ボックス */
.mailSendLoadingBox {
    background: #fff;
    padding: 24px 32px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
/** くるくる */
.mailSendSpinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border: 4px solid #e5e5e5;
    border-top-color: #2d7ff9;
    border-radius: 50%;
    animation: mailLoadingSpin 1s linear infinite;
}
/** 回転アニメーション */
@keyframes mailLoadingSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/** * 新規登録メール送信完了のスタイル login.tpl */
.mailSendMessage {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.7;
}

.mailSendMessageWaiting {
    background: #fff7e6;
    border: 1px solid #f0c36d;
    color: #7a4b00;
}

/** * 新規登録メール送信成功のスタイル websocketから通知受信後 login.tpl */
.mailSendMessageSuccess {
    background: #eef9f0;
    border: 1px solid #7cc48a;
    color: #256c2f;
}

.mailSendMessageError {
    background: #fff0f0;
    border: 1px solid #e09a9a;
    color: #9b1c1c;
}
/** * エラーメッセージエリアが空の場合は非表示にする */
#email_error_area:empty {
    display: none;
}