* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* HEADER */
.auth-header {
  text-align: center;
  margin-bottom: 20px;
}

.auth-logo {
  width: 60px;
  margin-bottom: 8px;
}

.auth-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.sub-text {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

/* MAIN CARD */
.auth-container {
  width: 380px;
  background: #fff;
  padding: 30px 28px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
}

/* LOGO (optional) */
.auth-container img {
  width: 60px;
  margin-bottom: 10px;
}

/* HEADING */
.auth-container h2 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #222;
}

/* INPUTS */
.auth-container input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.auth-container input:focus {
  outline: none;
  border-color: #ffb703;
}

/* BUTTON */
.auth-container button {
  width: 100%;
  padding: 12px;
  background: #ffb703;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.auth-container button:hover {
  background: #ffca28;
}

/* MESSAGE */
#msg {
  margin-top: 10px;
  font-size: 14px;
}

/* SWITCH LOGIN / SIGNUP */
.switch {
  margin-top: 16px;
  font-size: 14px;
}

.switch a {
  color: #6a0dad;
  text-decoration: none;
  font-weight: 500;
}

.switch a:hover {
  text-decoration: underline;
}
