/* ============================================================
 * kids+work パスワードリセット画面
 * public/css/resetpassword.css
 * ============================================================
 * 共通スタイルは login.css を参照
 * このファイルはパスワードリセット固有のスタイルのみ記述
 * ============================================================ */

/* 背景画像（login.cssのPC用flexレイアウトを上書き） */
body {
    background-image: url('/img/bg/bg_email.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    display: block !important;
    min-height: 100vh;
}

/* PC: login.cssの左右2列レイアウトを上書きしてフル背景に */
@media (min-width: 769px) {
    body { display: block !important; min-height: 100vh; }
    #login, .loginArea { display: block !important; }
}

/* ===== コンテナ ===== */
.reset-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.reset-inner {
    width: 100%;
    max-width: 440px;
    animation: fadeInUp 0.5s ease both;
}

/* ===== ロゴ ===== */
.reset-logo {
    text-align: center;
    margin-bottom: 32px;
}

.reset-logo img {
    height: 48px;
    object-fit: contain;
}

/* ===== テキスト ===== */
.reset-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 12px;
}

.reset-desc {
    font-size: 13px;
    color: #666;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ===== 送信ボタン ===== */
.btn-reset {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(51, 102, 204, 0.35);
    font-family: inherit;
    letter-spacing: 0.05em;
    margin-top: 6px;
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 102, 204, 0.45);
}

.btn-reset:active { transform: translateY(0); }

/* ===== ログインに戻るリンク ===== */
.back-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-link:hover { color: var(--primary-blue); text-decoration: underline; }