/* Full background (same as login) */
html, body {
  height: 100%;
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

body {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
    url("../img/Login/login-bg.jpeg") center/cover no-repeat fixed;
}



/* ================================
   NAVIGATION
   ================================ */
.dz-header {
  width: 100%;
  padding: 1rem 0;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 50;
}

.dz-nav a {
  margin: 0 1.2rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
}

.dz-nav a:hover {
  color: #00e5ff;
}



/* ================================
   WRAPPER
   ================================ */
.dz-auth-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;          /* sit near the top, not centered */
  padding: 80px 1.5rem 40px;       /* space for navbar + small bottom padding */
  box-sizing: border-box;
}



/* ================================
   AUTH CARD (Signup Box)
   ================================ */
.dz-auth-card {
  width: 100%;
  max-width: 440px;
  background: rgba(8, 11, 26, 0.88);
  backdrop-filter: blur(14px);
  padding: 2.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0,0,0,0.7);
  box-sizing: border-box;
}

.dz-auth-title {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.4rem;
}

.dz-auth-subtitle {
  font-size: 0.95rem;
  opacity: 0.85;
  text-align: center;
  margin-bottom: 1.8rem;
}



/* ================================
   FORM
   ================================ */
.dz-auth-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.dz-form-group {
  width: 100%;
}

.dz-form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

.dz-form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(18, 22, 45, 0.9);
  color: #fff;
  font-size: 0.9rem;
  box-sizing: border-box;
}

.dz-form-group input:focus {
  outline: none;
  border-color: #00e5ff;
  box-shadow: 0 0 0 1px rgba(0,229,255,0.45);
}



/* ================================
   PRIMARY BUTTON 
   ================================ */
.dz-btn-primary {
  width: 100%;
  border-radius: 4px;
  height: 44px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 200ms linear;
  padding: 0 30px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;

  /* your original yellow theme */
  background-color: #ffeba7;
  color: #102770;
  box-shadow: 0 8px 24px rgba(255,235,167,0.2);
}

.dz-btn-primary:hover {
  background-color: #ffe48b;
}



/* ================================
   FOOTER TEXT
   ================================ */
.dz-auth-footer-text {
  margin-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
}

.dz-auth-footer-text a {
  color: #00e5ff;
  text-decoration: none;
  font-weight: 500;
}

.dz-auth-footer-text a:hover {
  text-decoration: underline;
}



/* ================================
   MOBILE RESPONSIVE
   ================================ */
@media (max-width: 600px) {
  .dz-auth-card {
    padding: 1.7rem 1.3rem;
  }
}

.logo {
  position: absolute;
  top: 20px;
  right: 15px;
  bottom: auto;
  display: block;
  z-index: 80;
  transition: all 250ms linear;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* ================================
   Nav Bar
   ================================ */
/* NAVBAR WRAPPER */
.navbar {
  display: flex;
  align-items: center;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 35px;
}

/* CENTER NAVIGATION */
nav {
  flex: 1;
  text-align: center;
  margin-right: -60px;
}

nav ul {
  display: inline-block;
  list-style: none;
}

nav ul li {
  display: inline-block;
  margin-top: 1px;
  margin-right: 90px;
}

nav ul li a {
  text-decoration: none;
  font-size: 17px;
  color: white;
  font-family: sans-serif;
}

nav ul li a:hover {
  color: aqua;
}