* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b4e 100%);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #ffffff;
  padding: 20px;
}

.card {
  background: rgba(38, 38, 38, 0.95);
  border: 2px solid #9E7FFF;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(158, 127, 255, 0.2);
}

h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  background: linear-gradient(135deg, #9E7FFF, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  font-weight: 500;
  color: #A3A3A3;
  margin-bottom: -8px;
}

input {
  padding: 12px 16px;
  background: #171717;
  border: 2px solid #2F2F2F;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

input:focus {
  outline: none;
  border-color: #9E7FFF;
  box-shadow: 0 0 0 3px rgba(158, 127, 255, 0.2);
}

button[type="submit"] {
  padding: 14px 24px;
  background: linear-gradient(135deg, #9E7FFF, #38bdf8);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158, 127, 255, 0.4);
}

button[type="submit"]:active {
  transform: translateY(0);
}

.status {
  text-align: center;
  font-size: 14px;
  min-height: 20px;
  margin-top: 8px;
}

.status.error {
  color: #ef4444;
}

.status.success {
  color: #10b981;
}

.row {
  text-align: center;
  margin-top: 20px;
  color: #A3A3A3;
  font-size: 14px;
}

.row a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.row a:hover {
  color: #9E7FFF;
  text-decoration: underline;
}

#account-info {
  padding: 20px;
  background: #171717;
  border-radius: 8px;
  border: 1px solid #2F2F2F;
}

#account-info p {
  margin-bottom: 12px;
  font-size: 16px;
}

#account-info p:last-child {
  margin-bottom: 0;
}

#account-info strong {
  color: #38bdf8;
}
