/* style.css - シンプルで清潔感のあるSNS風デザイン */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f2f5; /* SNSによくある薄いグレー */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 { color: #1c1e21; font-size: 24px; margin-bottom: 1.5rem; }

input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #dddfe2;
    border-radius: 6px;
    box-sizing: border-box; /* 幅をピッタリ合わせる */
}

button {
    width: 100%;
    background-color: #1877f2; /* SNSブルー */
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
}

button:hover { background-color: #166fe5; }

a { color: #1877f2; text-decoration: none; font-size: 14px; }
a:hover { text-decoration: underline; }

.message { margin-top: 1rem; font-size: 14px; color: #606770; }

.btn-detail {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color); /* 定義済みのアクセントカラー */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
    transition: all 0.3s ease;
}

.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
    background: #5649c0; /* 少し濃く */
}

/* ダークモード時のボタン微調整 */
@media (prefers-color-scheme: dark) {
    .btn-detail {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }
}