.signup-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
.signup-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.signup-option {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 200px;
  text-decoration: none;
  color: inherit;
}
.signup-option:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}
.signup-option h3 {
  margin-top: 15px;
  color: #333;
}
.signup-option p {
  color: #666;
  font-size: 14px;
}
.signup-icon {
  font-size: 48px;
  margin-bottom: 15px;
}
