/* 自動キャプチャ テストベッド: 多段ログイン共通スタイル (架空ブランド) */
* { box-sizing: border-box; }
body { margin: 0; font-family: "Segoe UI", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; }

.login-body {
  background: #f3f4f6;
  min-height: 100vh;
}
.login-wrap {
  max-width: 460px;
  margin: 0 auto;
  padding: 72px 16px 24px;
  text-align: center;
}
.brand-logo {
  margin-bottom: 28px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.brand-mark { color: #4338ca; }
.brand-name { color: #374151; font-size: 18px; }

.login-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 28px 28px 22px;
  text-align: left;
}
.login-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  margin-bottom: 14px;
}
.field { position: relative; margin-bottom: 16px; }
.field input[type="text"],
.field input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  outline: none;
}
.field input:focus { border-color: #4338ca; box-shadow: 0 0 0 2px rgba(67,56,202,0.15); }

.field .toggle-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #6b7280;
}

.btn-login {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  background: #4338ca;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.btn-login:hover { background: #3730a3; }

.remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 12px;
  font-size: 13px;
  color: #4b5563;
}
.sub-links { margin-top: 14px; text-align: center; }
.sub-links a {
  display: block;
  margin: 6px 0;
  color: #4338ca;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
}
.sub-links a:hover { text-decoration: underline; }

.tenant-shown { font-size: 13px; color: #6b7280; margin-bottom: 14px; }
.tenant-shown strong { color: #374151; font-weight: 600; }

.vendor-mark { margin-top: 18px; text-align: center; color: #9ca3af; font-size: 12px; }
.copyright { margin-top: 22px; color: #9ca3af; font-size: 12px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
