.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #BC526F 0%, #8B3A52 100%);
}

.card {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.message,
.errorMessage,
.successMessage,
.redirectMessage {
  color: #718096;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.successMessage {
  color: #2d3748;
  font-size: 1.125rem;
}

.errorMessage {
  color: #c53030;
  background-color: #fed7d7;
  padding: 1rem;
  border-radius: 0.5rem;
}

.redirectMessage {
  font-size: 0.875rem;
  font-style: italic;
}

.successIcon,
.errorIcon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.spinner {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border: 4px solid #e2e8f0;
  border-top-color: #BC526F;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.button,
.buttonSecondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.2s;
  text-align: center;
}

.button {
  background: linear-gradient(135deg, #BC526F 0%, #8B3A52 100%);
  color: white;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(188, 82, 111, 0.3);
}

.buttonSecondary {
  background: white;
  color: #BC526F;
  border: 2px solid #BC526F;
}

.buttonSecondary:hover {
  background: #f7fafc;
}

@media (max-width: 640px) {
  .card {
    padding: 2rem;
  }

  .title {
    font-size: 1.5rem;
  }

  .actions {
    flex-direction: column;
  }
}
