/* 基本的なリセットとフォントの設定 */
/* 基本的なリセットとフォントの設定 */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background: #f4f4f4; /* 背景色を少し暗くしてフォームが目立つようにする */
}

/* ログインコンテナのスタイリング */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* フォームのスタイリング */
form {
    padding: 30px; /* パディングを増やして余白を広げる */
    width: 400px; /* フォームの幅を指定 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: white;
}

/* タイトル */
h2 {
    text-align: center;
    font-size: 24px; /* タイトルのフォントサイズを大きくする */
}

/* フォーム内のinputグループ */
.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px; /* ラベルのフォントサイズを大きくする */
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px; /* パディングを増やして入力フィールドを大きくする */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px; /* 入力フィールドのフォントサイズを大きくする */
}

/* ボタンのスタイリング */
button {
    width: 100%;
    padding: 12px; /* ボタンのパディングを大きくする */
    border: none;
    background-color: #007BFF;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px; /* ボタンのフォントサイズを大きくする */
}

button:hover {
    background-color: #0056b3;
}
.forgot-password {
    text-align: center;
    margin-top: 15px;
}

.forgot-password a {
    font-size: 14px;
    color: #007BFF;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}