/* =========================
   パスワードページ専用
   ========================= */

/* ページ全体の余白（ヘッダー被り対策） */
.post-password-required .entry-content {
    padding-top: 120px;
}

/* ページ背景グラデーション */
.post-password-required {
    background: linear-gradient(to bottom, #D0F4FF 0%, #DAF3FE 100%);
    min-height: 100vh;
}

/* フォーム全体をカード化 */
.post-password-required .post-password-form {
    max-width: 420px;
    margin: 0 auto;
    padding: 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

/* 説明文 */
.post-password-required .post-password-form p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: #333;
}

/* ラベル */
.post-password-required .post-password-form label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

/* パスワード入力 */
.post-password-required .post-password-form input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    margin-top: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

/* フォーカス時 */
.post-password-required .post-password-form input[type="password"]:focus {
    border-color: #3aa39f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(58,163,159,0.15);
}

/* ボタン */
.post-password-required .post-password-form input[type="submit"] {
    margin-top: 16px;
    width: 100%;
    padding: 12px;
    background: #3aa39f;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* ホバー */
.post-password-required .post-password-form input[type="submit"]:hover {
    background: #2d7f7c;
}