/* Reset + base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #00002e;
  color: white;
}

/* Layout */
.auth-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

/* Logo */
.logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 6px #ba75fd);
}

/* Make logo clickable and animated */
.logo a img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.logo a img:hover {
  transform: scale(1.05);
}

/* Auth box */
.auth-box {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: white;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #1a014d;
  color: white;
}

input::placeholder {
  color: #ccc;
}

button {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: #ba75fd;
  color: #00002e;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #d6a4ff;
}

/* Switch link */
.switch-link {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #ccc;
}

.switch-link a {
  color: #ba75fd;
  text-decoration: underline;
}
