body {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
}

.split-container {
  display: flex;
  height: 100vh;
}

.left-section {
  background-color: #800000;
  color: white;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
}

.left-section img {
  width: 400px;         
  max-width: 80%;        
  height: auto;         
  margin-bottom: 30px;
}
.left-section h2 {
  font-size: 28px;        
  font-weight: 800;        
  color: #fff;           
  margin-top: 20px;
  text-align: center;
}

.left-section p {
  font-size: 16px;        
  font-style: italic;
  color: #f1f1f1;          
  text-align: center;
  margin-top: 10px;
}

.login-logo {
  width: 120px;  
  animation: bounceSmooth 2s ease-in-out infinite;
}

@keyframes bounceSmooth {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}


.right-section {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.form-box {
  width: 100%;
  max-width: 400px;
}

.btn-maroon {
  background-color: #800000;
  color: white;
}

.btn-maroon:hover {
  background-color: #5e0000;
}

.toggle-link {
  margin-top: 10px;
  color: #800000;
  cursor: pointer;
  display: block;
  text-align: center;
}

.toggle-link:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}
.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  font-size: 18px;
}


 
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
 
.logo-pulse {
  width: 400px;
  animation: heartbeat 1.4s ease-in-out infinite;
}
 
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}

#preloader.fade-out {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
 
#preloader.hidden {
  display: none;
}
