@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800;900&display=swap');

body {
  font-family: 'Outfit', sans-serif;
  background-color: #0f172a;
  color: #f8fafc;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
  filter: blur(100px);
  z-index: -1;
  opacity: 0.5;
  animation: floatOrb 10s ease infinite alternate;
}

@keyframes floatOrb {
  0% { transform: translate(-100px, -100px) scale(1); }
  100% { transform: translate(100px, 100px) scale(1.2); }
}

.container {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 450px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.container:hover {
  border-color: rgba(236, 72, 153, 0.4);
}

h2, h3 {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-top: 0;
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.5;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-group input, .input-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid #334155;
  border-radius: 12px;
  box-sizing: border-box;
  font-size: 16px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  transition: all 0.2s ease;
}

.input-group input:focus, .input-group select:focus {
  outline: none;
  border-color: #ec4899;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.15);
}

button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.6);
}

button:active {
  transform: translateY(0);
}

hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 25px 0;
}

a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
}

a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}