/**
 * File: static/css/auth/login.css
 * Description: Styling for the Login page.
 */
body {
  background: linear-gradient(
    135deg,
    #1a237e 0%,
    #283593 50%,
    #3949ab 100%
  );
  min-height: 100vh;
}
.login-card {
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.login-card .card-header {
  background: transparent;
  border-bottom: none;
  padding: 2rem 2rem 0;
}
.login-card .card-body {
  padding: 1.5rem 2rem 2rem;
}
.form-control:focus {
  border-color: #1a237e;
  box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.25);
}
.btn-primary {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  border: none;
  padding: 0.75rem;
  font-weight: 600;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0d1557, #283593);
}
.cat-corner {
  position: fixed;
  right: 14px;
  bottom: 10px;
  width: 130px;
  height: 92px;
  z-index: 5;
  pointer-events: none;
}
.cat-corner [data-cat-lottie] {
  width: 100%;
  height: 100%;
}
