.custom-auth-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 15px;
}

.auth-box {
  width: 542px;
  background: #fff;
  padding: 30px;
  /* box-shadow: 0 4px 30px rgba(0,0,0,0.08); */
  border-radius: 6px;
}

.auth-box h3 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 400;
  color: #000000;
  font-family: 'Albert Sans', sans-serif;
}

.auth-box label {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight:500;
  color: #4B465C;
   font-family: 'Albert Sans', sans-serif;
}

.auth-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.btn-submit {
  width: 100%;
  background: #0248e6;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
  background: #ffffff;
  color: #0248e6;
  border: 1px solid #0248e6;
}

.footer-text {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #68686E;
  font-family: 'Poppins', sans-serif;
  justify-content: space-between;
  display: flex;
}

.footer-text a {
  color: #0248e6;
  text-decoration: none;
  font-weight: 400;
}

.error {
  background: #0248e617;
  color: #0248e6;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.success {
  background: #eaffea;
  color: #008000;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.custom-auth-wrap label span {
    color: red;       /* Make the * red */
    font-weight: bold; /* Optional: make it bold */
}


/* For tablets (iPad, 768px to 1024px) */
@media (max-width: 1024px) {
    .auth-box {
        width: 500px;
        padding: 25px;
    }
    .auth-box h3 {
        font-size: 20px;
    }
    .auth-box label {
        font-size: 15px;
    }
    .auth-box input {
        font-size: 13px;
        padding: 8px;
    }
    .btn-submit {
        font-size: 14px;
        padding: 10px;
    }
    .footer-text {
        font-size: 12px;
    }
}

/* For mobile devices (up to 767px) */
@media (max-width: 767px) {
    .auth-box {
        width: 90%;
        padding: 20px;
    }
    .auth-box h3 {
        font-size: 18px;
    }
    .auth-box label {
        font-size: 14px;
    }
    .auth-box input {
        font-size: 12px;
        padding: 7px;
    }
    .btn-submit {
        font-size: 13px;
        padding: 9px;
    }
    .footer-text {
        font-size: 11px;
    }
     .footer-text {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}