/* client/login/styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: #f0f0f0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#root {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.login-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.loading-text {
  font-size: 14px;
  color: #999;
}
.error-text {
  color: #c0392b;
  font-size: 14px;
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}
