/* =============================================
   LOLIPOP! Deploy Now — ログイン画面
   デザインは AIサイトエージェント (css/ai-site-agent/ai-site-agent.css)
   のログイン画面に揃えている。
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Noto Sans JP,Hiragino Sans,Meiryo,sans-serif;
  font-size: 14px;
  color: #10131c;
  background: #f5f3f3;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =============================================
   フォーム
   ============================================= */

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: 2px solid #10131c;
  outline-offset: 0;
  border-color: #10131c;
}

/* =============================================
   ログイン画面
   ============================================= */

.login-container {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.login-logo {
  text-align: center;
  margin-bottom: 30px;
}

.login-logo-img {
  display: inline-block;
  width: 520px;
  max-width: 100%;
  height: auto;
}

.login-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 32px;
}

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

.login-title-message {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 23px;
}

.error-message {
  background: #fff5f5;
  border: 1px solid #f5a5a5;
  color: #c0392b;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 16px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  color: #fff;
  background-color: #10131c;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: inherit;
}

.submit-btn:hover {
  background-color: #2a2d3a;
}

.message {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.message-action {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 35px;
}

.message-email {
  font-weight: bold;
  color: #333;
}

.back-link {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  color: #fff;
  background-color: #10131c;
  border: none;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s;
}

.back-link:hover {
  background-color: #10131c;
  color: #fff;
}

.login-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}

.login-footer a {
  color: #10131c;
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}

.login-note {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e5e3e3;
  font-size: 13px;
  line-height: 1.8;
  color: #666;
}

.login-note p {
  margin-bottom: 8px;
}

.login-note a {
  color: #10131c;
  text-decoration: underline;
}
