/* [project]/app/styles/login.css [app-client] (css) */
.login-container {
  background: #f5f7fa;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.login-form {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 360px;
  padding: 40px;
  box-shadow: 0 2px 12px #0000001a;
}

.login-form h1 {
  color: #2c3e50;
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 700;
}

.login-subtitle {
  color: #7f8c8d;
  margin-bottom: 24px;
  font-size: 14px;
}

.login-error {
  color: #c0392b;
  background: #fee;
  border-radius: 6px;
  margin-bottom: 16px;
  padding: 10px;
  font-size: 14px;
}

.login-form input {
  border: 1px solid #dcdfe6;
  border-radius: 8px;
  outline: none;
  width: 100%;
  margin-bottom: 16px;
  padding: 12px 16px;
  font-size: 16px;
  transition: border-color .2s;
}

.login-form input:focus {
  border-color: #28a745;
}

.login-form button {
  color: #fff;
  cursor: pointer;
  background: #28a745;
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: background .2s;
}

.login-form button:hover {
  background: #218838;
}

.login-form button:disabled {
  cursor: not-allowed;
  background: #95d5a3;
}

/*# sourceMappingURL=app_styles_login_53663e81.css.map*/