.signup-container {
  min-height: 100vh;
  background: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  font-family: sans-serif;
}

.signup-card {
  width: 100%;
  max-width: 600px;
  background: white;
  padding: 40px;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #111;
}

.subtitle {
  color: #666;
  margin-bottom: 24px;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
  display: block;
}

input,
select {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
  background: #f9fafb;
  margin-bottom: 20px;
  font-size: 16px;
}

input:focus,
select:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
  outline: none;
}

.actions {
  display: flex;
  justify-content: flex-end;
}

.next-btn {
  background: #1a73e8;
  color: white;
  padding: 12px 28px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.next-btn:hover {
  background: #155fc7;
}
