@charset "UTF-8";

/* ========================================
   ログイン画面専用スタイル (login.css)
======================================== */

/* ログインフォームのカード */
.login-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

/* 入力欄のグループ */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-sizing: border-box; 
    font-size: 16px;
}

.input-group input:focus {
    outline: none;
    border-color: #004097;
    box-shadow: 0 0 0 2px rgba(0, 64, 151, 0.2);
}

/* ログインボタン */
.login-btn {
    width: 100%;
    background-color: #004097; /* 指定のボタン色 */
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.login-btn:hover {
    background-color: #002e6e; /* ホバー時に少し暗くする */
}

/* パスワード忘れリンク */
.forgot-password-wrapper {
    text-align: center;  /* ★ここを center に変更して左右中央寄せに */
    margin-top: 5px;     /* パスワード入力欄との間隔 */
    margin-bottom: 25px; /* 下のログインボタンとの間隔 */
}

.forgot-password-link {
    color: #004097;
    text-decoration: none;
    font-size: 13px;
    font-weight: normal;
}

.forgot-password-link:hover {
    text-decoration: underline;
}