body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  /* height: 100%; */
  /* overflow: hidden; */
}

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  /* overflow: hidden; */
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeSlide 15s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }

@keyframes fadeSlide {
  0%, 100% { opacity: 0; }
  5%, 30% { opacity: 1; }
  35%, 100% { opacity: 0; }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 128, 0, 0.4);
  z-index: 1;
}

/* ✅ LOGIN BOX POSITIONING */
.login-container {
  position: absolute;
  top:10;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 50px;
}

.login-box {
  background: white;
  padding: 15px;
  padding-top: 30px;
  border-radius: 10px;
  width: 37%;
  /* min-height: 40%; */
  box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
}


.form-control {
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  height: auto; /* Override Bootstrap fixed height */
}




.login-box select,
.login-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.login-box button {
  width: 100%;
  padding: 12px;
  background-color: #5cb85c;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  margin-top: 10px;
}

.login-box .form-footer {
  text-align: right;
  margin-top: 5px;
  font-size: 13px;
}

.login-box .form-footer a {
  color: #2c7a2c;
  text-decoration: none;
}

.powered {
  font-size: 12px;
  margin-top: 20px;
  color: #888;
}

.logincontect {
color: var(--gray-gray-900, #2F2F30);
text-align: center;

/* H1 SemiBold */
font-family: Poppins;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.logincontent2{
    color: var(--primary-primary-700, #71C054);

/* H1 SemiBold */
font-family: Poppins;
font-size: 16px;
font-style: normal;
font-weight:600;
line-height: normal;
}
.btn-new{
  border-radius: 12px;
  background: var(--primary-primary-700, #71C054);
}
.alert .close {
    background: none !important;
    border: none !important;
    color: #fff !important;
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0.9;
}

.alert .close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
  .login-container {
    justify-content: center;
    padding-right: 0;
  }

  .login-box {
    width: 90%;
  }
}

.alert-floating {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: auto;
    min-width: 300px;
}

