/* register.css */
.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* Full height for centering */
  text-align: center;
  gap: 20px;
  color: white;
}

.auth-panel {
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 30px;
  max-width: 400px;
  width: 90%; /* Responsive */
}

.auth-panel h2 {
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: 400;
}

.auth-panel form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.auth-panel input {
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1em;
  outline: none;
  font-family: "Segoe UI", Arial, sans-serif;
}

.auth-panel input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.auth-panel button {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.3s;
}

.auth-panel button:hover {
  background: rgba(255, 255, 255, 0.5);
}

.switch-auth {
  margin-top: 10px;
  color: white;
  font-size: 0.9em;
}

.switch-auth a {
  color: #add8e6; /* Light blue for links */
  text-decoration: none;
  font-weight: bold;
}

.switch-auth a:hover {
  text-decoration: underline;
}
