body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.signup-container {
  background: #fff;
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  text-align: center;
}

.signup-container h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.signup-container form input[type="email"] {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #c0c0c0;
  border-radius: 2rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  outline: none;
  transition: 0.3s;
}

.signup-container form input[type="email"]:focus {
  border-color: #4a5eff;
}

.continue-btn {
  width: 100%;
  padding: 0.9rem;
  background-color: black;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.continue-btn:hover {
  background-color: #222;
}

.login-link {
  margin: 1rem 0;
  font-size: 0.9rem;
}

.login-link a {
  color: #3366ff;
  text-decoration: none;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: #999;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
  margin: 0 0.75rem;
}

.social-buttons button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 2rem;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  background-color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.social-buttons button:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.social-buttons img {
  margin-right: 10px;
}

.social-btn:hover {
  background: #f5f5f5;
}

.footer-links {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #666;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  margin: 0 0.3rem;
}
.container {
  max-width: 400px;
  margin: auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

input[type="text"],
input[type="password"],
input[type="number"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.verification-container {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}

.verification-container input {
  flex: 2;
}

.verification-container button {
  flex: 1;
}

button[type="submit"],
.verification-container button {
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


.message {
  margin-top: 10px;
  color: green;
  font-size: 0.9em;
}

.error {
  color: red;
}