@import url("https://fonts.googleapis.com/css2?family=Georama:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Georama", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  font-weight: 500;
  scroll-behavior: smooth;
}

.container {
  background: #ffffff;
  max-width: 360px;
  margin: auto;
  margin-top: 48px;
  padding: 32px;
  border-radius: 14px;
  border: 2px solid #ffe5d7;
}

#head {
  text-align: center;
  margin-bottom: 20px;
}

#head h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #222;
}

#head p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  color: #666;
}

#message {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-size: 0.9rem;
  display: none;
}

#message.error {
  display: block;
  background: rgba(255, 119, 48, 0.15);
  color: #ff7730;
  border: 1px solid #ff7730;
}

#message.success {
  display: block;
  background: rgba(255, 119, 48, 0.15);
  color: #ff7730;
  border: 1px solid #ff7730;
}

.input-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #444;
}

input {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  transition: 0.2s;
}

input:focus {
  outline: none;
  border-color: #ff7730;
  box-shadow: 0 0 0 2px rgba(255, 119, 48, 0.2);
}

#signup-btn {
  width: 100%;
  padding: 12px;
  background: #ff7730;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}

#signup-btn:hover {
  background: #e5661f;
}

#signup-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#other-links {
  margin-top: 15px;
  text-align: center;
}

#other-links a {
  color: #ff7730;
  text-decoration: none;
}

#other-links a:hover {
  text-decoration: underline;
}
