body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #1a0033, #0a0a0f);
  color: #e5e7eb;
}

/* Center */
.login-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glass effect */
.glass-card {
  width: 320px;
  padding: 30px;
  border-radius: 12px;

  background: rgba(20, 20, 40, 0.6);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(124, 58, 237, 0.3);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
  text-align: center;
}

/* Title */
.title {
  color: #a78bfa;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Inputs */
input {
  width: 90%;
  padding: 12px;
  margin: 10px 0;

  background: #0f0f1a;
  border: 1px solid #1f1f2e;
  border-radius: 8px;

  color: white;
  outline: none;
}

input:focus {
  border: 1px solid #7c3aed;
  box-shadow: 0 0 10px #7c3aed;
}

/* Password field */
.password-field {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Eye button */
.eye-btn {
  margin-left: 5px;
  padding: 10px;
  border: none;
  background: #1f1f2e;
  color: #a78bfa;
  cursor: pointer;
  border-radius: 6px;
}

.eye-btn:hover {
  background: #7c3aed;
  color: white;
}

/* Login button */
.login-btn {
  width: 100%;
  margin-top: 15px;
  padding: 12px;

  border: none;
  border-radius: 8px;

  color: white;
  cursor: pointer;

  background: linear-gradient(90deg, #7c3aed, #00d4ff);
  transition: 0.3s;
}

.login-btn:hover {
  box-shadow: 0 0 15px #7c3aed;
  transform: scale(1.03);
}

.back-btn {
  position: absolute;
  top: 15px;
  left: 15px;

  background: transparent;
  border: 1px solid #7c3aed;
  color: #a78bfa;

  padding: 8px 12px;
  border-radius: 6px;

  cursor: pointer;
  transition: 0.2s;
}

.back-btn:hover {
  background: #7c3aed;
  color: white;
  box-shadow: 0 0 10px #7c3aed;
}

/* Needed so button positions correctly */
.glass-card {
  position: relative;
}