/* =============================================
   LOLIPOP! AIエージェントクラウド — ログイン画面
   ============================================= */

*, *::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: #f2f3f7;
  min-height: 100vh;
}

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

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

.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;
  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;
}

/* Form */
.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;
}

.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;
}

/* Sent / Expired */
.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;
}

/* Footer */
.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;
}
