/* .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(4, 60, 100, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
} */

.login-container {
  height: 100vh;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  background-color: #0F4B71;

  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-image: url('{{ asset(' dash_new/img/earth.png') }}'); */
  background-size: 100% 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  position: relative;
}

.login-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0F4B71;
  opacity: 0.35;
}

.outer-login-container {
  height: auto;
  width: 900px;
  background: linear-gradient(270deg, #1D8FD7 0%, #0F4B71 100%);
  padding: 10px;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

.bg-gradient-custom {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 30px;
  height: auto;
  width: 350px;
  margin-left: 20px;
  font-size: 14px;
}

.login-box .row {
  /* height: 100%; */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

}

.form-label {
  color: #000 !important;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 1px;
}

input.form-control {
  margin-top: 4px;
  border-radius: 4px;
  padding: 6px;
  font-size: 14px;
  height: 36px;
}

a.text-danger {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #C80D0D;
}

a.text-danger:hover {
  text-decoration: underline;
}

.btn-info {
  background-color: #19CBFC;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  padding: 8px;
}

.btn-info:hover {
  background-color: #1fa4f2;
}

.text-light a {
  color: #C80D0D;
  font-size: 14px;
  font-weight: 500;
}

.position-relative {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

img.img-fluid {
  max-height: 350px;
  width: auto;
}

.login-heading {
  font-size: 30px;
}

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
}


/* RESPONSIVE ADDITIONS */
@media (max-width: 991px) {
  .outer-login-container {
    width: 100%;
    padding: 20px 10px;
  }

  .login-box .row {
    flex-direction: column;
    align-items: center;
  }

  .bg-gradient-custom {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }

  .position-relative {
    width: 100%;
  }

  .position-relative img {
    max-height: 280px;
    width: 100%;
    object-fit: contain;
  }

  .login-container {
    background-size: cover;
    padding: 20px 10px;
  }
}

@media (max-width: 575px) {

  .form-label,
  input.form-control,
  a.text-danger,
  .btn-info,
  .text-light a {
    font-size: 13px;
  }

  .login-heading {
    font-size: 20px;
  }

  .btn-info {
    padding: 7px;
  }

  .login-container {
    padding-top: 40px;
  }
}