:root {
  /* Navy & Orange Color Palette */
  --navy-900: #0a1929;
  --navy-800: #1a2332;
  --navy-700: #1e293b;
  --navy-600: #334155;
  --navy-500: #475569;

  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;

  --coral-500: #ff6b6b;
  --teal-500: #06b6d4;

  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 0rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   LOGIN PAGE LAYOUT
   ============================================ */

.login-page {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  overflow: hidden;
}

/* Animated Background Pattern */
.login-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
  opacity: 1;
  z-index: 0;
}

/* White Background */
.login-page {
  position: relative;
  background: #eae8e8;
  overflow: hidden;
}

/* Mesh Gradient Overlay */
.login-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg,
      transparent 30%,
      rgba(249, 115, 22, 0.04) 30%,
      rgba(249, 115, 22, 0.04) 70%,
      transparent 70%),
    linear-gradient(-45deg,
      transparent 30%,
      rgba(6, 182, 212, 0.03) 30%,
      rgba(6, 182, 212, 0.03) 70%,
      transparent 70%);
  background-size: 60px 60px;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  animation: meshMove 20s linear infinite;
}


/* Animation */
@keyframes meshMove {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 200px 200px, -200px -200px;
  }
}

/* Floating Orbs */
.login-page .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
  animation: float 15s ease-in-out infinite;
}

.login-page .orb-1 {
  width: 300px;
  height: 300px;
  background: var(--orange-500);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.login-page .orb-2 {
  width: 250px;
  height: 250px;
  background: var(--teal-500);
  bottom: -80px;
  right: -80px;
  animation-delay: 3s;
}

.login-page .orb-3 {
  width: 200px;
  height: 200px;
  background: var(--coral-500);
  top: 40%;
  right: 10%;
  animation-delay: 6s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* ============================================
   LOGIN CONTAINER & CARD
   ============================================ */

.login-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.login-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

/* ============================================
   GLASS FORM SECTION
   ============================================ */

.glass-form {
  padding: 1.5rem;
  background: var(--white);
  position: relative;
}

/* Administration Header */
.administration-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gray-100);
  position: relative;
}

.administration-header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-500), var(--orange-600));
  border-radius: 2px;
}

.administration-title h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.administration-logo {
  padding: 0.5rem;
}

.administration-logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  /* prevents distortion */
  display: block;
  /* removes inline gap */
}

.administration-logo img {
  max-height: 100px;
  width: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
  image-rendering: auto;
}

/* Page Header */
.page-header {
  margin-bottom: 2rem;
  text-align: left;
}

.page-header p {
  font-size: 0.95rem;
  color: var(--gray-500);
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-header p::before {
  font-size: 1.25rem;
}

/* ============================================
   ALERTS
   ============================================ */

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.9rem;
  animation: slideInDown 0.4s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-danger {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #991b1b;
  border-left: 4px solid #dc2626;
}

.alert-danger::before {
  content: "⚠️";
  font-size: 1.25rem;
}

.alert-success {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: #166534;
  border-left: 4px solid #16a34a;
}

.alert-success::before {
  content: "✓";
  font-size: 1.25rem;
  font-weight: 700;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label .text-danger {
  color: var(--coral-500);
  margin-left: 2px;
}

/* Input Group */
.input-group {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  transition: all var(--transition-base);
  overflow: hidden;
}

.input-group:hover {
  border-color: var(--gray-300);
  background: var(--white);
}

.input-group:focus-within {
  border-color: var(--orange-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
  transform: translateY(-1px);
}

.input-group-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background: transparent;
  border: none;
  color: var(--gray-400);
  transition: color var(--transition-base);
}

.input-group:focus-within .input-group-text {
  color: var(--orange-500);
}

.input-group-text svg {
  width: 20px;
  height: 20px;
}

.form-control {
  flex: 1;
  padding: 0.875rem 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy-900);
  background: transparent;
  border: 1;
  outline: none;
  transition: all var(--transition-base);
}

.form-control::placeholder {
  color: var(--gray-400);
  font-weight: 400;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
}

/* Password Toggle Button */
#togglePassword {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--gray-400);
  transition: all var(--transition-base);
}

#togglePassword:hover {
  color: var(--orange-500);
  background: rgba(249, 115, 22, 0.05);
}

#togglePassword svg {
  width: 20px;
  height: 20px;
}

#togglePassword svg path,
#togglePassword svg circle {
  stroke: currentColor;
}


/* ============================================
   FORM FOOTER SECTION
   ============================================ */

.form-left-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1rem;
  border-top: 2px solid var(--gray-300);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

/* Animated Border Top */
.form-left-footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      var(--orange-500) 0%,
      var(--navy-700) 50%,
      var(--orange-500) 100%);
  background-size: 200% 100%;
}


/* Subtle Pattern Background */
.form-left-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(249, 115, 22, 0.02) 10px,
      rgba(249, 115, 22, 0.02) 20px);
  pointer-events: none;
  z-index: 0;
}

/* All content above pattern */
.form-left-footer>* {
  position: relative;
  z-index: 1;
}

/* Footer Label */
.footer-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color var(--transition-base);
}

.form-left-footer:hover .footer-label {
  color: var(--navy-700);
}

/* Partner Logo Image */
.form-left-footer img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 2px solid var(--gray-200);
  background: var(--white);
  padding: 2px;
}

.form-left-footer img:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-500);
}

/* Footer Brand Link */
.footer-brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(255, 0, 255, 0.05);
  border: 1px solid rgba(255, 0, 255, 0.2);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

/* Hover effect background sweep */
.footer-brand::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 0, 255, 0.1),
      transparent);
  transition: left 0.5s ease;
}

.footer-brand:hover::before {
  left: 100%;
}

.footer-brand:hover {
  background: rgba(255, 0, 255, 0.1);
  border-color: #ff00ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 255, 0.2);
}

.footer-brand:active {
  transform: translateY(0);
}

/* Footer Brand Text */
.footer-brand span {
  color: #ff00ff;
  font-family: "Old English Text MT", "old-bookmark", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.footer-brand:hover span {
  color: #dd00dd;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

/* Alternative Modern Style (Optional - Uncomment to use) */
/*
.footer-brand span {
  background: linear-gradient(135deg, #ff00ff 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
*/

/* ============================================
   RESPONSIVE STYLES FOR FOOTER
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
  .form-left-footer {
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-label {
    font-size: 0.8rem;
  }

  .form-left-footer img {
    width: 32px;
    height: 32px;
  }

  .footer-brand span {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .form-left-footer {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    text-align: center;
  }

  .footer-label {
    font-size: 0.75rem;
    width: 100%;
  }

  .form-left-footer img {
    width: 30px;
    height: 30px;
  }

  .footer-brand {
    padding: 0.5rem 1rem;
  }

  .footer-brand span {
    font-size: 13px;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .form-left-footer {
    padding: 0.875rem;
    gap: 0.5rem;
  }

  .footer-label {
    font-size: 0.7rem;
  }

  .form-left-footer img {
    width: 28px;
    height: 28px;
  }

  .footer-brand span {
    font-size: 12px;
  }
}

/* Print Styles */
@media print {

  .form-left-footer::before,
  .form-left-footer::after {
    display: none;
  }

  .form-left-footer {
    border-top: 1px solid #000;
    background: white;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .form-left-footer::before {
    animation: none;
  }

  .form-left-footer img:hover,
  .footer-brand:hover {
    transform: none;
  }
}

/* Dark Mode Support (Optional) */
/* @media (prefers-color-scheme: dark) {
  .form-left-footer {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    border-top-color: var(--navy-600);
  }

  .footer-label {
    color: var(--gray-300);
  }

  .form-left-footer:hover .footer-label {
    color: var(--white);
  }

  .form-left-footer img {
    border-color: var(--navy-600);
    background: var(--navy-700);
  }
} */

/* ============================================
   SUBMIT BUTTON
   ============================================ */

.btn-primary {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-700) 100%);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* ============================================
   FORGOT PASSWORD LINK
   ============================================ */

.text-center a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-700);
  text-decoration: none;
  transition: all var(--transition-base);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.text-center a:hover {
  color: var(--orange-500);
  background: rgba(249, 115, 22, 0.05);
  border-color: var(--orange-500);
  transform: translateY(-1px);
}

.text-center a svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.text-center a:hover svg {
  transform: scale(1.1);
}

/* ============================================
   RIGHT SIDE PANEL
   ============================================ */

.form-right {
  background: linear-gradient(180deg,
      var(--sidebar-bg) 0%,
      var(--sidebar-secondary) 100%);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.form-right1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-right1 img {
  background-color: white;
}


/* Decorative Elements */
.form-right::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.form-right::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite 4s;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.logo-container {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 2.5rem;
  animation: fadeInScale 0.8s ease-out 0.3s backwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.brand-logo {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(249, 115, 22, 0.3);
  transition: all var(--transition-slow);
}

.brand-logo:hover {
  border-color: var(--orange-500);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.info-section {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.info-section h4 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.info-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-500), var(--teal-500));
  border-radius: 2px;
}

.info-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet and Below */
@media (max-width: 991px) {
  .login-container {
    max-width: 600px;
  }

  .glass-form {
    padding: 2.5rem 2rem;
  }

  .form-right {
    display: none;
  }

  .administration-title h1 {
    font-size: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .login-page {
    padding: 1.5rem 1rem;
  }

  .login-page .orb {
    display: none;
  }

  .glass-form {
    padding: 2rem 1.5rem;
  }

  .administration-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-bottom: 1rem;
  }

  .administration-header::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .administration-title h1 {
    font-size: 1.35rem;
  }

  .administration-logo img {
    width: 50px;
    height: 50px;
  }

  .page-header p {
    font-size: 0.875rem;
  }

  .form-label {
    font-size: 0.8rem;
  }

  .form-control {
    padding: 0.75rem 0.875rem;
    font-size: 0.9rem;
  }

  .btn-primary {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }

  .input-group {
    border-radius: var(--radius-md);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .login-page {
    padding: 1rem 0.75rem;
  }

  .glass-form {
    padding: 1.5rem 1.25rem;
  }

  .administration-title h1 {
    font-size: 1.25rem;
  }

  .administration-logo img {
    width: 45px;
    height: 45px;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-control {
    padding: 0.7rem 0.75rem;
    font-size: 0.875rem;
  }

  .btn-primary {
    padding: 0.8rem 1rem;
    font-size: 0.875rem;
  }

  .input-group-text {
    padding: 0 0.75rem;
  }

  .input-group-text svg {
    width: 18px;
    height: 18px;
  }
}

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .login-page {
    padding: 1rem;
  }

  .glass-form {
    padding: 1.5rem;
  }

  .administration-header {
    margin-bottom: 1rem;
  }

  .page-header {
    margin-bottom: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }
}

/* Large Screens */
@media (min-width: 1400px) {
  .login-container {
    max-width: 1280px;
  }

  .form-right {
    padding: 4rem 3.5rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .login-page {
    background: white;
  }

  .login-page::before,
  .login-page::after,
  .orb,
  .form-right {
    display: none;
  }
}