.st0 { fill: #00BCD4; }

/* auth.css — TinkerChat standalone login/register page */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: #0F1115;
  color: #E0E0E0;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.auth-box {
  background: #14171C;
  border: 1px solid #1E2126;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 188, 212, 0.1);
}
h1 {
  font-family: "Encode Sans Expanded", sans-serif;
  font-weight: 500;
  Font-size: 4rem;
}

/* Headings & text */
.auth-box h1 {
  font-size: 1.5rem;
  color: #00BCD4;
  margin: 1rem;
  letter-spacing: 1px;
}

 p {
  margin: 1rem;
  font-size: 1rem;
  color: #E0E0E0;
  letter-spacing: 0.1rem;
   line-height: 1.5rem;
}

span {
  color: #7EFC8D;
}

/* Form fields */
.auth-box input {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1rem;
  background: #0F1115;
  border: 1px solid #1E2126;
  border-radius: 4px;
  color: #E0E0E0;
}

/* Buttons */
.auth-box button {
  width: 100%;
  padding: 0.6rem;
  background: #00BCD4;
  color: #0F1115;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.auth-box button:hover {
  background: #7EFC8D;
}

/* Links */
a {
  color: #00BCD4;
  text-decoration: none;
  font-weight: 500;
}
a:hover { text-decoration: underline; }

.error { color: #D60000; margin-bottom: 1rem; }

@media (max-width: 600px) {
  .auth-box {
    padding: 1.5rem;
    max-width: 90%;
  }
}
