:root {
  --payu-blue: #0b5ed7;
  --payu-dark: #FF8C00;
  --payu-light: #f4f8ff;
  --text-dark: #000000;
}

/* Background */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: linear-gradient(180deg, #f8fbff, #eef3ff);
}

/* Wrapper */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* Card */
.login-card {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  padding: 36px 32px;
  text-align: center;
  color: var(--text-dark);
  box-shadow: 0 12px 30px rgba(11, 94, 215, 0.15);
  transition: all 0.3s ease;
  font-weight: 700;
}

.login-card:hover {
  box-shadow: 0 18px 45px rgba(11, 94, 215, 0.25);
  transform: translateY(-3px);
}

/* Heading */
.login-card h2 {
  font-weight: 700;
  color: var(--payu-dark);
  margin-bottom: 6px;
}

.login-card p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Inputs */
.form-control {
  border-radius: 8px;
  border: 1px solid #dbe3f0;
  padding: 10px 12px;
  font-size: 0.95rem;
}

.form-control:focus {
  border-color: var(--payu-blue);
  box-shadow: 0 0 0 2px rgba(11, 94, 215, 0.2);
}

/* Button */
.btn-login {
  background: linear-gradient(90deg, #fa7900,#994a00);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 11px;
  width: 100%;
  margin-top: 14px;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: linear-gradient(90deg, #0a58ca, #06357a);
  transform: translateY(-2px);
}

/* Footer */
.footer-text {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 22px;
}

.footer-text a {
  color: var(--payu-blue);
  text-decoration: none;
  font-weight: 500;
}

.footer-text a:hover {
  text-decoration: underline;
}
