.container {
  min-height: calc(100vh - 75px) !important;
}

.dcard-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.dcard.split-card {
  background: #1f1f1f;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  width: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.split-card span {
  color: #fff;
}


.icon-container {
  background-color: #3b82f6;
  padding: 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.loginBTN {
  background-image: linear-gradient(to right, #00bd8e, #0088ce);
  transition: background 300ms ease;
  border-radius: 7px;
  border: 2px #fff solid;
  position: relative; /* New addition for relative positioning */
  z-index: 1;
}

.loginBTN::before { /* New pseudo-element */
  border-radius: 7px;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: opacity 0.3s linear;
  opacity: 0;
  background-image: linear-gradient(to right, #0088ce, #00bd8e); /* Adjust colors for your preference */
}

.loginBTN:hover::before {
  opacity: 1;
}

.indexFooter {
  width: 100%;
  background-color: #fff;
  padding: 10px;
  position: fixed;
  bottom: 0;
}

.indexFooter img {
  max-height: 55px;
}

.login-form-submit {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 992px) {
  .homeIcons {
    display: none!important;
  }
  .logo_index span {
    font-size: 5vw!important;
  }
}

@media (max-width: 600px) {

  .login-form-submit {
    font-size: 4vw!important;
  }
}

.select2-selection {
  -webkit-box-shadow: 0;
  box-shadow: 0;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  color: #555555;
  font-size: 16px;
  outline: 0;
  min-height: 38px;
  text-align: left;
}

.select2-selection__rendered {
  margin: 5px;
}

.select2-selection__arrow {
  margin: 5px;
  right: 12px!important;
}


select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,<svg fill='none' stroke='%23333' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.2rem center; /* Adjust this value to move arrow left */
  background-size: 1rem;
}

.background-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
  z-index: 9998; /* Ensures it appears below the spinner */
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensures it appears above the background */
}

.spinner-border {
  color: #fff; /* Spinner color */
}

.dt-length label {
  display: none;
}