body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 24px 16px;
  box-sizing: border-box;
}

.login-container {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 320px;
  text-align: center;
}

h2 {
  margin-bottom: 1.5rem;
}

input[type="email"],
input[type="org"] {
  width: 90%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

button {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  background: #4a6df0;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: #3d5cd1;
}

.secondary-link {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #4b5563;
}

.secondary-link a {
  color: #4a6df0;
  text-decoration: none;
  font-weight: 600;
}

.secondary-link a:hover {
  text-decoration: underline;
}

.helper {
  margin-top: 0.75rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.legal {
  margin: 1rem 0;
  text-align: left;
  font-size: 0.88rem;
  color: #374151;
}

.legal label {
  display: block;
  margin-bottom: 0.55rem;
}

.legal a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}

.top-link {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #4a6df0;
  text-decoration: none;
  font-weight: 600;
}

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

.feedback {
  margin-top: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: left;
}

.feedback.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.feedback.warning {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.feedback a,
.error a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

.feedback a:hover,
.error a:hover {
  text-decoration: underline;
}
