@charset "utf-8";
/* css/reminder.css */

/* ==================================================
   全体レイアウト
================================================== */
/* コンテンツ全体の囲み */
.reminder-wrap {
    max-width: 800px;
    margin: 0 auto; /* 中央寄せ */
    padding: 60px 20px;
}

/* パスワード再発行のタイトル */
.reminder-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}

/* REMINDERのサブタイトル */
.reminder-subtitle {
    font-size: 14px;
    color: #ccc;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

/* 説明文のエリア */
.reminder-desc {
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0; /* 薄いグレーの下線 */
}


/* ==================================================
   入力フォームエリア
================================================== */
/* 入力フォームのエリア（行のまとまり） */
.reminder-form-group {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 中身を左揃え */
    width: 100%;
    max-width: 650px; /* フォーム全体の幅を固定 */
    margin: 0 auto 30px auto; /* フォームのまとまり自体を画面の中央に配置 */
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

/* ラベル（「Eメールアドレス」や「新しいパスワード」など） */
.reminder-form-group label {
    font-weight: bold;
    font-size: 16px;
    width: 240px; /* ラベルの幅をしっかり固定 */
    flex-shrink: 0; /* 自動で幅が縮むのを防ぐ */
    text-align: left;
}

/* 入力ボックス */
.reminder-input {
    width: 400px;
    flex-shrink: 0; /* 自動で縮むのを防ぐ */
    padding: 12px;
    background-color: #f5f5f5; /* 薄いグレーの背景 */
    border: none; /* 枠線を消す */
    border-radius: 4px; /* 角を丸くする */
    box-sizing: border-box; /* 余白による計算ズレを防ぐ */
}
@media screen and (max-width: 834px) {
   .reminder-form-group label {
        width: 120px; /* ラベルの幅を狭くする */
        font-size: 12px; /* ラベルの文字サイズを少し小さくする */
    }
    .reminder-input {
        width: 175px; /* 入力ボックスの幅を狭くする */
    } 
}

/* ==================================================
   ボタン・リンクエリア
================================================== */
/* 送信ボタンのエリア */
.reminder-submit-area {
    text-align: center;
}

/* 送信ボタン（緑枠・白背景） */
.reminder-submit-btn {
    display: inline-block;
    width: 300px;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    color: #156E42; /* 文字色を緑に設定 */
    background-color: #fff; /* 背景色は白 */
    border: 2px solid #156E42; /* 枠線を緑に設定 */
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* マウスを乗せた時のボタンの動き */
.reminder-submit-btn:hover {
    background-color: #e8f5e9; /* マウスを乗せた時にほんのり薄い緑にする */
}


/* ==================================================
   完了画面専用
================================================== */
/* 完了画面のメッセージ */
.reminder-complete-msg {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

/* 完了画面のボタンエリア調整（縦並びにして中央揃え） */
.reminder-submit-area.complete-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ログイン画面へ進むボタン（幅を広めに設定） */
.reminder-submit-btn.wide-btn {
    width: 100%;
    max-width: 500px;
    position: relative; /* 矢印の位置調整用 */
}

/* ボタン右側の矢印 */
.reminder-submit-btn.wide-btn::after {
    content: '>';
    position: absolute;
    right: 20px;
    font-weight: bold;
}

/* テキストリンク（トップページに戻る） */
.reminder-link-text {
    display: inline-block;
    margin-top: 30px;
    font-size: 16px;
    color: #156E42; /* トンマナの緑色 */
    text-decoration: none;
    transition: all 0.3s ease;
}

.reminder-link-text:hover {
    color: #115734; /* マウスを乗せた時に少し濃い緑にする */
    text-decoration: underline; /* マウスを乗せたら下線を出す */
}