/* ===============================
   REGISTER PAGE BACKGROUND
================================ */
.register-page {
  min-height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  font-family: sans-serif;
}

/* Center area BELOW header */
.register-center {
  min-height: calc(100vh - 120px); /* header height space */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

/* ===============================
   REGISTER CARD (glass)
================================ */
.register-card {
  width: 100%;
  max-width: 28rem;

  /* background: rgba(255, 255, 255, 0.2); */
   background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;

  padding: 2rem;
  color: white;
  text-align: center;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Title */
.register-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 16px rgba(30, 144, 255, 0.8);
}

/* ===============================
   FORM
================================ */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Inputs */
.input {
  width: 100%;
  padding: 0.7rem 1rem;

  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.6rem;

  color: white;
  font-size: 1rem;
  outline: none;
  transition: 0.25s ease;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.input:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 6px #60a5fa;
}

/* ===============================
   REGISTER BUTTON
================================ */
.register-btn {
  width: 100%;
  padding: 0.8rem 0;
  margin-top: 0.5rem;

  background: rgba(59, 130, 246, 0.3);
  border: 1px solid rgba(147, 197, 253, 0.5);
  border-radius: 0.6rem;

  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
  text-shadow: 0 0 8px rgba(59,130,246,0.8);
}

.register-btn:hover {
  background: rgba(59, 130, 246, 0.5);
}

/* ===============================
   LOGIN LINK TEXT
================================ */
.login-text {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.login-link {
  margin-left: 4px;
  color: #93c5fd;
  font-weight: 700;
  text-decoration: none;
}

.login-link:hover {
  text-decoration: underline;
}
