:root {
  --main-brand: #4b1d5a;
  --main-hover: #3a1645;
}

.login-wrapper {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.login-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: none;
  width: 100%;
  max-width: 450px;
  transition: transform 0.3s ease;
}

.custom-input {
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.custom-input:focus {
  border-color: var(--main-brand);
  box-shadow: 0 0 0 0.25rem rgba(75, 29, 90, 0.1);
  outline: none;
}

.btn-modern {
  background-color: var(--main-brand);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-modern:hover {
  background-color: var(--main-hover);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(75, 29, 90, 0.2);
}

.main-color-text {
  color: var(--main-brand);
  font-weight: 500;
}

.main-color-text:hover {
  color: var(--main-hover);
}

@media (max-width: 576px) {
  .login-card {
    margin: 15px;
    padding: 2rem !important;
    box-shadow: none !important;
  }
}
