body.login {
  background-color: #00aef0;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

#wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-page-background {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.login-card-container {
  background: #e90505;
  width: 100%;
  max-width: 1000px;
  height: 600px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: row; /* Lado a lado */
  overflow: hidden;
  position: relative;
}

.login-column-form {
  flex: 0 0 40%;
  max-width: 40%;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.login-form-content {
  width: 100%;
  max-width: 80%;
  margin-top: 100px !important;
  margin-left: -10px !important;
}

.login-header {
  margin-top: 25px;
  text-align: left;
}

.login-logo {
  max-height: 40px;
  margin-bottom: 20px;
  display: block;
  width: auto;
}

.login-title {
  font-size: 22px;
  color: #333;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.login-column-form .md-form {
  margin-bottom: 6px !important;
  position: relative !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  width: 100% !important;
  height: auto !important;
}

.login-column-form .md-form label {
  display: block !important;
  position: static !important;
  transform: none !important;
  margin-bottom: 8px !important;
  color: #555 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  pointer-events: auto !important;
  top: auto !important;
  left: auto !important;
}

.login-column-form input.form-control-custom,
.login-column-form input[type="text"],
.login-column-form input[type="password"] {
  width: 100% !important;
  height: 45px !important;
  padding: 10px 15px !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  background-color: #f9f9f9 !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  margin: 0 !important;
  color: #333 !important;
}

.login-column-form input:focus {
  border-color: #00aef0 !important;
  background-color: #fff !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0, 174, 240, 0.1) !important;
}

.login-column-form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #f9f9f9 inset !important;
}

.login-options {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 25px;
  width: 100%;
}

.link-blue {
  color: #00aef0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.btn-login-full {
  width: 100%;
  padding: 14px;
  background-color: #00aef0;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-login-full:hover {
  background-color: #009ad6;
}

.login-footer-links {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.termo_politica {
  margin-top: auto;
  font-size: 11px;
  color: #bbb;
  text-align: center;
  padding-top: 10px;
}

.login-column-banner {
  flex: 0 0 60%;
  max-width: 60%;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.banners-full-height {
  width: 100%;
  height: 100%;
}

.banners-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.banners-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  box-sizing: border-box;

  background-size: cover;
  background-position: center;

  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.banner-slide.active {
  opacity: 1;
  z-index: 5;
}

.banner-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.banner-slide h3,
.banner-slide p,
.banner-slide a {
  position: relative;
  z-index: 10;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-slide h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.banner-slide p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
  max-width: 80%;
}

.banner-slide a {
  display: inline-block;
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(5px);
  transition: all 0.3s;
}

.banner-slide a:hover {
  background: #fff;
  color: #00aef0;
}

.banners-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 20;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #fff;
  transform: scale(1.2);
}

.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 30px;
  cursor: pointer;
  z-index: 20;
  transition: color 0.3s;
}

.banner-nav:hover {
  color: #fff;
}

.banner-prev {
  left: 15px;
}
.banner-next {
  right: 15px;
}

/* =========================================
   4. RESPONSIVIDADE TABLET (769px até 1024px)
   ========================================= */
@media (min-width: 769px) and (max-width: 1024px) {
  .login-card-container {
    max-width: 95%;
    height: auto;
    min-height: 550px;
  }

  .login-column-form {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 30px;
  }

  .login-column-banner {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .login-title {
    font-size: 28px;
  }
}

/* =========================================
   5. RESPONSIVIDADE MOBILE (Celulares < 768px)
   ========================================= */
@media (max-width: 768px) {
  body.login {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    padding: 20px 0;
    align-items: flex-start;
  }

  .login-card-container {
    flex-direction: column-reverse;
    width: 90%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .login-column-form {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
    padding: 30px 25px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -20px;
    z-index: 20;
  }

  .login-header {
    margin-bottom: 20px;
    text-align: center;
  }

  .login-logo {
    margin: 0 auto 15px auto;
  }

  .login-title {
    font-size: 22px;
    text-align: center;
  }

  .login-column-form input.form-control-custom,
  .login-column-form input[type="text"],
  .login-column-form input[type="password"] {
    height: 45px !important;
    font-size: 16px !important;
  }

  .login-column-banner {
    flex: 0 0 220px;
    max-width: 100%;
    width: 100%;
    height: 220px;
    min-height: 220px;
  }

  .banner-slide {
    padding: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 40px;
  }

  .banner-slide h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .banner-slide p {
    font-size: 13px;
    line-height: 1.3;
    display: none;
  }

  .banner-slide a {
    margin-top: 10px;
    font-size: 11px;
    padding: 6px 12px;
  }

  .banners-dots {
    bottom: 35px;
  }
}
