/* ログインページと同じ背景 */
        body {
            background-image:
                    linear-gradient(rgba(255, 220, 240, 0.6), rgba(255, 220, 240, 0.6)),
                    url('/static/assets/images/login-page-background.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
        }

        .reset-card input {
            width: 100%;
            box-sizing: border-box;
            padding: 14px;
            border: 1px solid #ccc;
            border-radius: 10px;
            font-size: 16px;
        }

        /* ==== ここから: インラインstyle外部化分 ==== */

        .reset-section {
            padding: 40px 0;
            min-height: 100vh;
        }

        .reset-wrap {
            max-width: 680px;
            margin: 0 auto;
            padding: 24px 16px;
        }

        .reset-card {
            background: rgba(255,255,255,0.82);
            border-radius: 24px;
            padding: 28px 22px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        }

        .reset-title {
            font-size: 22px;
            color: #555;
            margin: 0 0 10px;
        }

        .reset-desc {
            font-size: 14px;
            color: #777;
            margin: 0 0 18px;
        }

        .reset-field {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 15px;
            color: #555;
            margin-bottom: 6px;
        }

        .reset-field-error {
            color: #d9534f;
            font-size: 13px;
            margin-top: 6px;
            font-weight: bold;
        }

        .reset-submit-btn {
            width: 100%;
            background: linear-gradient(135deg,#ff4fa3,#b46bff);
            color: #fff;
            padding: 15px;
            border: none;
            border-radius: 999px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
        }

        .reset-form-footer {
            text-align: center;
            margin-top: 18px;
        }

        .reset-login-link {
            color: #3f7ee8;
            font-size: 15px;
            font-weight: bold;
            text-decoration: none;
        }

/* bootstrap の a:hover(青) がクラス色(詳細度0,1,0)に勝つのを防ぐ。ホバーでも各ボタンの色を保つ */
.reset-login-link:hover { color: #3f7ee8; }
