.auth-page {
  max-width: 400px;
  margin: 50px auto;
  padding: 0 15px;
  text-align: center;
}

/* ROLE TABS */
.auth-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.auth-tab {
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

.auth-tab i {
  font-size: 16px;
}

.auth-tab.active {
  background: #ee7d1c;
  /* orange */
  color: #fff;
  border-color: #ee7d1c;
}

/* LOGIN CARD */
.auth-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 12px;
  text-align: left;
}

/* HEADER */
.auth-header {
  background: #1b4f8a;
  /* navy blue */
  color: white;
  padding: 24px 24px 18px 24px;
  display: flex;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.auth-header-icon {
  font-size: 26px;
  margin-bottom: 8px;
  opacity: 0.8;
}

/* FORM */
.auth-form {
  padding: 20px 24px 24px 24px;
}

.auth-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.auth-form input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.auth-form input:focus {
  border-color: #1b4f8a;
  outline: none;
  box-shadow: 0 0 8px rgba(27, 79, 138, 0.3);
}

/* BUTTON */
/* Using your global .btn class + override for auth */
.auth-btn {
  width: 100%;
  background-color: #ee7d1c;
  /* orange */
  color: white;
  font-weight: 700;
  padding: 12px 0;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  transition: background-color 0.3s;
  cursor: pointer;
}

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

/* FORGOT PASSWORD */
.forgot-password {
  color: #ee7d1c;
  font-size: 13px;
  margin: 12px 0 16px 0;
  cursor: pointer;
  text-align: right;
}

/* REGISTER LINK */
.auth-link {
  font-size: 13px;
  text-align: center;
  color: #555;
  margin-top: 4px;
}

.auth-link a {
  color: #ee7d1c;
  font-weight: 600;
  text-decoration: none;
}

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

/* FOOTER NOTE */
.auth-footer-note {
  font-size: 11px;
  color: #777;
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
}