/* リセット */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ページ全体のスタイル */
body {
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* コンテナ */
.reset-container {
    background: #fff;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid #2C3E50;
}

/* ロゴ */
.logo {
    width: 120px;
    margin-bottom: 15px;
}

/* タイトル */
h2 {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 20px;
}

/* 入力フォーム */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ラベル */
label {
    width: 100%;
    text-align: left;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
    font-weight: bold;
}

/* 入力欄 */
input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 50px; /* 角を完全に丸く */
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

/* 入力欄フォーカス時 */
input:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

/* ボタン */
button {
    width: 100%;
    background: #2C3E50;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 50px; /* 角を完全に丸く */
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
    margin-top: 15px;
}

/* ボタンホバー時 */
button:hover {
    background: #1B2A38;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* メッセージ（成功・エラー） */
.success-message, .error-message {
    font-size: 14px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: center;
}

.success-message {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.error-message {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

/* リンク */
p {
    margin-top: 15px;
    font-size: 14px;
}

p a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

p a:hover {
    text-decoration: underline;
}
