/* brand.css */

.bg-mainsen {
  background: linear-gradient(135deg, #50216F, #7A5FFF);
}

.login-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  padding: 40px;
  animation: fadeIn 0.6s ease;
  max-width: 420px;
  width: 100%;
}

.form-control-rounded {
  border-radius: 12px;
}

.btn-mainsen {
  background-color: #50216F;
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  color: white;
}

.btn-mainsen:hover {
  background-color: #7A5FFF;
  color: white;
}

.lang-switch {
  position: absolute;
  top: 20px;
  right: 30px;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}
