/* =========================================================
   auth.css
   役割：ログイン画面専用スタイル
   対象：layouts/auth.blade.php
   ========================================================= */

/* ---------- 画面全体 ---------- */

body {
    margin: 0;
    background-color: #f3f4f6;
    font-family: -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, "Helvetica Neue",
                 Arial, sans-serif;
}

/* ---------- ラッパ ---------- */

.auth-wrapper {
    padding-top: 80px;   /* ヘッダー下に余白 */
    display: flex;
    justify-content: center;
}

/* ---------- カード ---------- */

.auth-card {
    width: 420px;
    background: #ffffff;
    padding: 40px 36px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ---------- タイトル ---------- */

.auth-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 600;
}

/* ---------- フォーム ---------- */

.auth-form-group {
    margin-bottom: 20px;
}

.auth-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

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

/* ---------- ボタン ---------- */

.auth-button {
    width: 100%;
    padding: 12px;
    background-color: #1f2937;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.auth-button:hover {
    background-color: #111827;
}

/* ---------- エラー ---------- */

.auth-error {
    color: #dc2626;
    font-size: 14px;
    margin-bottom: 20px;
}

/* ---------- ヘッダー ---------- */

.auth-header {
    height: 70px;
    background-color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-header-inner {
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
}

.auth-logo {
    height: 32px;
}

/* ========================================
   ログイン：ユーザーID記憶チェックボックス
======================================== */

.login-remember {
    display: flex;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 18px;
}

.login-remember input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.login-remember label {
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}