
/* Main container */
.welcome-screen {
  display: flex;
  width: 100%;
  min-height: 100vh;
  background-color: #7FBCDF;
  background-image: url('welcome-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Slider Section */
.welcome-screen .slider {
  position: relative;
  width: 50%;
  border-radius: 1.875rem;
  overflow: hidden;
}

.welcome-screen .slider-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slides */
.welcome-screen .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.welcome-screen .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-screen .slide.active {
  opacity: 1;
  z-index: 2;
}

/* Overlay */
.welcome-screen .slider-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.11);
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
  z-index: 3;
  top: 0;
  left: 0;
  pointer-events: none;
}

/* Slider text */
.welcome-screen .slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  z-index: 4;
  width: 100%;
  padding: 2.5rem;
}

.welcome-screen .slider-content h2 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.welcome-screen .slider-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Bullets */
.welcome-screen .bullets {
  display: flex;
  gap: 6px;
}

.welcome-screen .bullets span {
  width: 8px;
  height: 8px;
  background-color: #e8e6e3;
  border-radius: 50%;
  display: block;
}

.welcome-screen .bullets span.active {
  background-color: #e12727;
}

/* Right Panel */
.welcome-screen .right-panel {
  width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
}

.welcome-screen .right-panel img.logo {
  width: 195px;
  margin: 0 auto 10px;
}

.welcome-screen .right-panel h1 {
  font-size: 2rem;
  color: #212121;
}

.welcome-screen .right-panel h3 {
  font-size: 1.325rem;
  color: #333;
}
.login-buttons button{min-width: 210px;}


/* Responsive for Mobile */
@media (max-width: 899.98px) {
  .welcome-screen .slider {width: 45%;}
  .welcome-screen .right-panel {width: 55%;}
  .welcome-screen .slider {border-radius: 1.25rem;}
  .welcome-screen .slider-content{padding: 1.5rem;}
}
@media (max-width: 767.98px) {
  .welcome-screen {
    flex-direction: column-reverse;
  }
  .welcome-screen .slider {
    width: 100%;
    height: 50vh;
  }
  .welcome-screen .right-panel {
    width: 100%;
    padding: 1.5rem 1rem;
    flex: 1 1 auto;
  }
}
@media screen and (max-width:575.98px) {
  .welcome-screen .right-panel {padding: 0 0 1.5rem;}
  .welcome-screen .right-panel img.logo{margin-bottom: 0.5rem;}
  .welcome-screen .right-panel h1 {font-size: 2rem;}
  .welcome-screen .slider-overlay {
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
  }
}