
/* Center and size login form */
.login-form-container {
  max-width: 480px;       /* not too small, not too wide */
  margin: 2rem auto;
  padding: 2rem;
  background: var(--card, #101828);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.login-title {
  text-align: center;
  margin: 1rem 0 2rem;
}

.login-form-container label {
  display: block;
  margin-bottom: 1rem;
  color: var(--text, #e6e8ee);
}

.login-form-container input {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid var(--border, #1f2937);
  border-radius: 4px;
  background: #fff;
  color: #000;
}

.login-form-container button {
  display: block;
  width: 100%;
  padding: 0.75rem;
  margin-top: 1rem;
  background: var(--accent, #1ea7fd);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.login-form-container .register-text {
  text-align: center;
  margin-top: 1.5rem;
}


