/* SCR-01 ログイン画面 専用スタイル。
   ページ全体のヘッダー・パネル・ボタン等の共通見た目は scr03.css / base.html
   を流用し、ここではログイン専用のヘッダー(ロゴ+タイトル)とログインカード内の
   要素を定義する。 */

/* ヘッダー(ナビ紺色帯)をロゴ入りの大きなヒーロー表示に差し替える */
.login-page .site-header-inner {
    flex-direction: column;
    align-items: center;
    padding: 110px 16px 64px;
}

.login-page .site-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.login-page .site-header nav {
    display: none;
}

.login-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 10px 18px;
    background: #ffffff;
    border-radius: 6px;
}

.login-logo-img {
    display: block;
    width: 170px;
    max-width: 60vw;
    height: auto;
}

.login-page .site-title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
}

.login-page .site-subtitle {
    margin: 3px 0 0;
    font-size: 13px;
}

.login-wrap {
    max-width: 400px;
    margin-inline: auto;
    padding-top: 28px;
}

.login-panel {
    padding: 28px 24px 24px;
    text-align: center;
}

.login-panel form {
    text-align: left;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.form-group input {
    width: 100%;
    min-height: 42px;
    border: 1px solid #aeb8c4;
    border-radius: 2px;
    padding: 9px 10px;
    background: #ffffff;
    color: #1f2937;
    font: inherit;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: #1f5f8b;
    box-shadow: 0 0 0 2px rgba(31, 95, 139, 0.15);
}

.remember-login {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
    font-size: 13px;
    color: #374151;
}

.remember-login input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #1a3a5c;
}

.remember-login label {
    cursor: pointer;
}

.forgot-link {
    display: block;
    margin-top: 6px;
    text-align: right;
    font-size: 12px;
    color: #1f5f8b;
    text-decoration: none;
}

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

.login-button {
    display: block;
    width: 100%;
    min-height: 46px;
    margin-top: 20px;
    background: #1a3a5c;
    font-size: 15px;
    letter-spacing: 0.05em;
}

.login-button:hover {
    background: #12293f;
}

.login-note {
    margin: 16px 0 0;
    font-size: 11px;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .login-wrap {
        padding-top: 20px;
    }

    .login-panel {
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }
}
