.login-panel {
  margin: 22px auto;
  max-width: 1498px;
  padding: 0 20px;
  z-index: 4;
  color: var(--color-white);
}
.hero-section, body,html{
  overflow: auto !important;
}
.navbar-content {
  justify-content: center !important;
}

.hero-section {
  min-height: 100vh !important;
  max-height: none !important;
}

.login-title {
  color: #ffffff;
  font-size: 64px;
  font-weight: 400;
  line-height: 77px;
  letter-spacing: 1.3px;
  margin: 0 0 24px 0;
}

.login-form {
  display: flex;
  flex-direction: column;
  max-width: 598px;
}

.login-form .form-group {
  margin-bottom: 25px;
}

.login-form .form-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 8px;
}

.login-input.form-control {
  height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.login-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.password-group {
  position: relative;
}

.password-group .toggle-password {
  position: absolute;
  right: 12px;
  bottom: 50%;
  transform: translateY(50%);
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0.85;
}

.password-group .toggle-password:hover,
.password-group .toggle-password:focus {
  opacity: 1;
}

.btn-login {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: none;
  background: var(--color-brand-accent);
  color: var(--color-brand-primary);
  font-size: 18px;
  cursor: pointer;
}

.btn-login:hover,
.btn-login:focus {
  background: var(--color-brand-accent-hover);
}

.login-links {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.85);
}

.login-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-section{
  margin: 0 !important;
}

@media (max-width: 992px) {
  .navbar-content {
    justify-content: space-between !important;
  }
  .login-links{
    flex-direction: column;
    align-items: flex-start;
    margin-top: 15px;
      }
}