body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff, #c1ccf7);
}

.login-card {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  border-radius: 10px;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Toast Modern Style */
.maintenance-toast-modern,
.error-toast-modern {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  border: none;
  padding: 1rem 1.3rem;
  max-width: 400px;
  font-size: 0.97rem;
  animation: fadeInToast 0.8s;
}

.maintenance-toast-modern {
  border-left: 5px solid #f5c25e;
}

.error-toast-modern {
  border-left: 5px solid #e44e4e;
}

.toast-icon {
  font-size: 1.9rem;
  color: #212529;
}

.maintenance-toast-modern .toast-icon {
  color: #f5c25e;
}

.error-toast-modern .toast-icon {
  color: #e44e4e;
}

.toast-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: #212529;
  display: block;
  margin-bottom: 0.2rem;
}

.toast-desc {
  font-size: 0.91rem;
  color: #555;
}

.btn-close {
  opacity: 0.7;
}

@keyframes fadeInToast {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
