/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== BODY ===== */
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #1e3a8a, #2563eb);
}

/* ===== CARD CONTAINER ===== */
.auth-card {
  background: #ffffff;
  padding: 30px;
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}

/* ===== HEADINGS ===== */
.auth-card h2 {
  color: #1e3a8a;
  margin-bottom: 10px;
}

.auth-card p {
  color: #6b7280;
  margin-bottom: 20px;
  font-size: 14px;
}

/* ===== INPUT GROUP ===== */
.input-group {
  text-align: left;
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

/* ===== INPUT FIELDS ===== */
.input-group input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.input-group input:focus {
  border-color: #2563eb;
}

/* ===== BUTTON ===== */
button {
  width: 100%;
  padding: 12px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}

button:hover {
  background: #1e3a8a;
}

/* ===== EXTRA TEXT ===== */
.extra {
  margin-top: 15px;
  font-size: 14px;
}

.extra a {
  color: #2563eb;
  text-decoration: none;
}

.extra a:hover {
  text-decoration: underline;
}