/* 全体の設定 */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* ログインフォーム全体のコンテナ */
.login-container {
    background-color: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

/* 見出し */

.login-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}


.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* フォームグループ（ラベルと入力フィールド） */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

/* ボタン */
button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

/* エラーメッセージ */
.error {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

/* パスワードを忘れましたかのリンク */
.extra-links {
    text-align: center;
    margin-top: 10px;
}

.extra-links a {
    color: #007BFF;
    text-decoration: none;
}

.extra-links a:hover {
    text-decoration: underline;
}
