.login-section input {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  transition: border-color 0.2s ease;
}

.login-section input:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.1rem rgba(40, 167, 69, 0.25);
}

.btn-success {
  border-radius: 10px;
  font-weight: 600;
  background: var(--new-green);
  transition: all 0.25s ease;
}

.btn-success:hover {
  background: var(--new-green4);
}

@media (max-width: 991px) {
  .login-section {
    background: #fff;
  }
}

.login-form {
  position: relative;
  border-radius: 10px;
  background: #fff;
  z-index: 1;
  overflow: hidden;
}

.login-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(
    90deg,
    var(--new-green, #28a745),
    var(--new-green2, #3ddc84),
    var(--new-green, #28a745)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderFlow 5s linear infinite;
  z-index: -1;
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
