* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: var(--primary-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: #ffffff;
  color: #000;
  width: 100%;
  max-width: 420px;
  padding: 24px;
  border-radius: 18px;
  animation: fadeIn 0.6s ease;
}

h1 {
  text-align: center;
  color: var(--primary-color);
}

.subtitle {
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

form input,
form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 14px;
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

.success {
  display: none;
  text-align: center;
  color: var(--primary-color);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
