.cards-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}
.card {
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  color: #f0f0f0;
  cursor: default;
}
.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.card p {
  font-size: 1.5rem;
  font-weight: bold;
}

.btn-primary {
  background-color: #4f46e5;
  color: #f0f0f0;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

.btn-secondary {
  background-color: #2d2123;
  color: #f0f0f0;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(40, 40, 50, 0.8);
  padding: 1.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(12px);
  max-width: 450px;
  margin: 0 auto;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
form:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}
form input, form select, form textarea {
  padding: 0.6rem;
  border-radius: 0.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
  transition: all 0.3s ease;
  font-size: 1rem;
}
form input:focus, form select:focus, form textarea:focus {
  border: 1px solid #4f46e5;
  box-shadow: 0 0 8px #4f46e5;
  outline: none;
}
form button {
  width: fit-content;
  align-self: flex-end;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #121212;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  color: #f0f0f0;
}

.header {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}
.header .logo h1 {
  background: linear-gradient(90deg, #4f46e5, #2d2123);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@keyframes logo-fade {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px) rotate(-2deg);
  }
  100% {
    transform: translateY(0);
  }
}
h1 {
  margin-bottom: 2rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/*# sourceMappingURL=main.css.map */
