.card-left-semi-transparent {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  color: white;
  padding: 2rem;
  transition: all 0.3s ease;
  min-height: 380px;
}

.card-left-semi-transparent.with-alert {
  min-height: 440px;
}

.form-control-custom {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  background: transparent;
  color: white;
  box-shadow: none;
}

.form-control-custom:focus {
  border-bottom: 1px solid #9b7aff;
  background: transparent;
  color: white;
  box-shadow: none;
}

.btn-violet {
  background-color: #7b4fe0;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  transition: background-color 0.2s ease-in-out;
}

.btn-violet:hover {
  background-color: #8c62ff;
}

.alert {
  border-radius: 0.5rem;
  animation: fadeInDown 0.3s ease-in-out;
  margin-bottom: 0;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#mfa-qr{
  width: 60%;
}

#mfaModal .modal-content {
    background-color: rgba(20, 20, 30, 0.95); 
    color: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#mfaModal .btn-close {
    filter: invert(1);
}

#mfaModal .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 0;
    box-shadow: none;
}

#mfaModal .btn-primary {
    background-color: #7b4fe0;
    border: none;
    border-radius: 0.5rem;
}
