.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.registration-choice {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

h1 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 30px;
}

.choice-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.choice-card {
  background-color: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 30px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 300px;
}

.choice-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border-color: #007bff;
}

.choice-card i {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 20px;
}

.choice-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.choice-card p {
  font-size: 0.9rem;
  color: #6c757d;
}

.login-link {
  margin-top: 20px;
}

.login-link a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
  .choice-options {
    flex-direction: column;
    align-items: center;
  }

  .choice-card {
    width: 100%;
    max-width: none;
  }
}
