body {
  height: 100vh;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100vh;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
}

.carousel-item.active {
  display: block;
  animation: fadeIn 1.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.carousel-inner img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.login-container {
  position: absolute;
  top: 0;
  right: 300px;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.login-card {
  width: 350px;
  background: white;
  color:#262626 ;
  padding: 20px;
  border-radius: 8px;
}
.login-card img {
  width: 100px;
  margin-bottom: 20px;
}

.btn-custom {
  background-color: #00a65b;
  border: none;
  color: #fff;
}

.btn-custom:hover {
  background-color: #3CB371;
  color:#fff;
}

.position-relative .password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
  font-size: 1.2em;
}

.form-control {
  padding-right: 2.5rem;
}

@media (max-width: 768px) {
  #carouselSlides {
    display: none;
  }
  .login-container {
    position: static;
    justify-content: center;
    align-items: center;
    display: flex;
    height: auto;
    padding: 20px;
  }
  .login-card {
    width: 100%;
    max-width: 350px;
    margin: auto;
  }
}
