@font-face {
  font-family: Montagu Slab;
  src: url(fonts/MontaguSlab-VariableFont_opsz\,wght.ttf);
}
@font-face {
  font-family: Lexend;
  src: url(fonts/Lexend/Lexend-VariableFont_wght.ttf);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background: #fff;
  color: #222;
}

.auth-container {
  max-width: 500px;
  margin: 40px auto;
  padding: 32px 24px 16px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.auth-title {
  font-family: Montagu Slab;
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
  text-align: center;
}

.auth-subtext {
  font-family: Montagu Slab;
  font-size: 1rem;
  margin-bottom: 28px;
  text-align: center;
}

.auth-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-row {
  display: flex;
  gap: 16px;
}

.auth-input {
  font-family: Lexend;
  font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid #ccc;
  border-radius: 5px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.2s;
  background: #fff;
}

.auth-input:focus {
  border-color: #FFD429;
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.auth-remember {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 8px;
}

.auth-remember input[type="checkbox"] {
  width: 15px;   /* Optional: for better click area */
  height: 15px;  /* Optional: for better click area */
  transform: scale(1.4); /* Increase the number to make it bigger */
  accent-color: #FFD429; /* Optional: change checkbox color (modern browsers) */
  margin-left: 5px;     /* Optional: spacing */
}

.auth-link {
  color: #FFD429;
  text-decoration: none;
  font-weight: 500;
  transition: text-decoration 0.2s;
}

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

.forgot {
  font-family: Montagu Slab;
  font-size: 1rem;
  margin-left: auto;
}

.auth-btn {
  width: 100%;
  background: #FED61D;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  margin: 18px 0 10px 0;
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.4,0,0.2,1), color 0.25s cubic-bezier(0.4,0,0.2,1);
}

.auth-btn:hover {
  background: #000;
  color: #FED61D;
}

.auth-footer {
  font-family: Montagu Slab;
  margin-top: 18px;
  text-align: center;
  font-size: 1rem;
}

.auth-privacy {
  font-family: Montagu Slab;
  font-size: 1rem;
  color: #222;
  margin: 8px 0 0 0;
  text-align: justify;
}

@media (max-width: 600px) {
  .auth-container {
    max-width: 98vw;
    padding: 18px 4vw 10px 4vw;
  }
  .auth-title {
    font-size: 2rem;
  }
  .auth-row {
    flex-direction: column;
    gap: 10px;
  }
  .auth-btn {
    font-size: 1.1rem;
    padding: 13px 0;
  }
  .auth-form {
    gap: 12px;
  }
}

/* Privacy Policy Styles */
.policy-container {
  max-width: 700px;
  margin: 40px auto;
  padding: 32px 24px 24px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  font-family: 'Poppins', Arial, sans-serif;
}

.policy-bold {
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 1.08rem;
}

.policy-section {
  margin-bottom: 18px;
}

.policy-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 18px 0 6px 0;
}

.policy-subheading {
    font-size: 1.1rem;
    font-weight: 600;
  margin: 10px 0 4px 0;
}

.policy-list {
  margin: 8px 0 8px 24px;
  padding: 0;
  list-style: disc inside;
  font-size: 1rem;
}

.policy-list li {
  margin-bottom: 4px;
}

@media (max-width: 700px) {
  .policy-container {
    max-width: 98vw;
    padding: 18px 4vw 10px 4vw;
  }
}

/* Password Recovery Unique Styles */
.recoverpw-container {
  max-width: 520px;
  margin: 48px auto 0 auto;
  padding: 36px 24px 32px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 150px;
}

.recoverpw-title {
  font-family: Montagu Slab;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 18px 0;
  letter-spacing: 1px;
  text-align: center;
}

.recoverpw-desc {
  font-family: Montagu Slab;
  font-size: 0.9rem;
  margin-bottom: 36px;
  text-align: center;
  color: #222;
}

.recoverpw-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.recoverpw-label {
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: #222;
}

.recoverpw-input {
  font-family: Lexend;
  font-size: 1.08rem;
  padding: 14px 16px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  transition: border 0.2s;
}

.recoverpw-input:focus {
  border-color: #FED61D;
}

.recoverpw-btn {
  width: 100%;
  background: #FED61D;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 15px 0;
  margin-top: 18px;
  cursor: pointer;
  transition: background 0.25s cubic-bezier(0.4,0,0.2,1), color 0.25s cubic-bezier(0.4,0,0.2,1);
  letter-spacing: 0.5px;
}

.recoverpw-btn:hover {
  background: #000;
  color: #FED61D;
}

@media (max-width: 600px) {
  .recoverpw-container {
    max-width: 98vw;
    padding: 18px 4vw 18px 4vw;
  }
  .recoverpw-title {
    font-size: 2rem;
  }
  .recoverpw-btn {
    font-size: 1.1rem;
    padding: 13px 0;
  }
  .recoverpw-desc {
    font-size: 1rem;
  }
}
