/* Authentication pages styles */

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-bg {
  background-image: url('../images/login-bg.png');
}

.register-bg {
  background-image: url('../images/register-bg.png');
}

.verify-bg {
  background-image: url('../images/login-bg.png');
}

.logo-bar {
  position: absolute;
  top: 20px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 80px;
}

.logo-bar img {
  height: 140px;
  width: auto;
}

.auth-form-container {
  width: 450px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.auth-form-container h2 {
  margin-bottom: 25px;
  font-size: 26px;
  color: var(--primary-color);
  text-align: center;
}

.auth-form-container label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.auth-form-container input[type="text"],
.auth-form-container input[type="email"],
.auth-form-container input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input[type="text"] {
  flex: 1;
}

.auth-form-container input[type="checkbox"] {
  margin-right: 8px;
  vertical-align: middle;
}

.checkbox-label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
}

.auth-form-container input[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.auth-form-container input[type="submit"]:hover {
  background-color: var(--primary-dark);
}

.auth-links {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

.auth-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

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

/* OTP Verification */
.otp-input {
  letter-spacing: 15px;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

.auth-illustration {
  max-width: 200px;
  margin: 0 auto 20px;
  display: block;
}

@media (max-width: 600px) {
  .auth-form-container {
    width: 90%;
    padding: 20px;
  }

  .logo-bar img {
    height: 80px;
  }
} 