@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
  --bg: #1A1A2E;
  --card: #2A2A40;
  --purple: #7B2CBF;
  --accent: #9D4EDD;
  --text: #E0E0E0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: start;
  min-height: 100vh;
  padding-top: 40px;
}

.container {
  width: 90%;
  max-width: 700px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--accent);
  font-weight: 600;
  font-size: 32px;
}

.card {
  background-color: var(--card);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(155, 75, 255, 0.15);
  margin-bottom: 25px;
  transition: 0.3s ease;
}

.card:hover {
  box-shadow: 0 0 25px rgba(155, 75, 255, 0.25);
}

.card h2 {
  margin-bottom: 15px;
  color: var(--purple);
  font-size: 20px;
}

input, select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background-color: #383863;
  border: none;
  border-radius: 8px;
  color: white;
}

button {
  background-color: var(--accent);
  color: white;
  border: #E0E0E0;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #B983FF;
}

.link-button {
  background: transparent;
  color: var(--accent);
  border: none;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 10px;
}