.auth-container {
  max-width: 420px;
  margin-top: 6%;
}

.login-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.4s ease;
}

.login-card-header {
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.login-card-body {
  padding: 25px;
}

.login-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mfa-blue);
  margin-bottom: 20px;
}

.login-logo {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--mfa-blue);
  letter-spacing: -2px;
  text-decoration: none;
}

.login-logo .accent {
  color: var(--mfa-teal);
  font-weight: 700;
}

.form-control {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 10px 12px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Alerts === */
.notify {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 2px solid;
  margin: 10px 5px;
}
.notify a {
  font-weight: 700;
  color: #fff;
}
.notifyCheckbox {
  display: none;
}
:checked + .notify {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.notifyText {
  flex: 1;
  font-size: 14px;
}
.notifyText i {
  font-size: 18px;
}
.notifyClose {
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}
.notify-info {
  background-color: #2196f3;
  border-color: #0d47a1;
  color: #efe;
}
.notify-success {
  background-color: #5cac64;
  border-color: #2e7d32;
  color: #efe;
}
.notify-warning {
  background-color: #ffeb3b;
  border-color: #fbc02d;
  color: #333;
}
.notify-danger {
  background-color: #ff4433;
  border-color: #b71c1c;
  color: #fff;
}