body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a34, #314351);
  position: relative;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 0;
}

.blob {
  position: fixed;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.8;
  will-change: border-radius, transform;
}

.blob-green {
  width: 600px;
  height: 400px;
  background: #64847f;
  top: -150px;
  left: -200px;
  animation: morphGreen 25s ease-in-out infinite;
}

.blob-gray {
  width: 500px;
  height: 350px;
  background: #64847f;
  bottom: -120px;
  right: -180px;
  animation: morphGray 25s ease-in-out infinite;
}

@keyframes morphGreen {
  0% {
    border-radius: 45% 55% 60% 40% / 50% 40% 60% 50%;
    transform: translate(0, 0) scale(1);
  }

  30% {
    border-radius: 60% 40% 45% 55% / 40% 60% 50% 50%;
    transform: translate(20px, 30px) scale(1.05);
  }

  60% {
    border-radius: 55% 45% 60% 40% / 60% 50% 40% 50%;
    transform: translate(-10px, -20px) scale(1);
  }

  100% {
    border-radius: 45% 55% 60% 40% / 50% 40% 60% 50%;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes morphGray {
  0% {
    border-radius: 50% 50% 40% 60% / 50% 60% 40% 50%;
    transform: translate(0, 0) scale(1);
  }

  30% {
    border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%;
    transform: translate(-25px, -15px) scale(1.04);
  }

  60% {
    border-radius: 55% 45% 60% 40% / 50% 50% 60% 40%;
    transform: translate(15px, 20px) scale(1);
  }

  100% {
    border-radius: 50% 50% 40% 60% / 50% 60% 40% 50%;
    transform: translate(0, 0) scale(1);
  }
}







.logo-mascara {
  width: 128px;
  height: 128px;
  background: #fff;
  -webkit-mask-image: url('/img/logo-color.png');
  mask-image: url('/img/logo-color.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  margin-bottom: 30px;
}

.container-login {
  display: flex;
  width: 100%;
  max-width: 1000px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 999;
}

.welcome-section {
  background-color: #005e54;
  color: #FFFFFF;
  padding: 60px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.welcome-section h1 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
}

.welcome-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.welcome-section .btn-register {
  background-color: #00AEEF;
  border: none;
  color: #FFFFFF;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 50px;
  transition: background-color 0.3s, transform 0.2s;
  text-decoration: none;
}

.welcome-section .btn-register:hover {
  background-color: #FFFFFF;
  color: #338d7f;
  transform: translateY(-3px);
}

.login-section {
  padding: 60px;
  width: 50%;
  text-align: left;
}

@media (max-width: 575px) {

  html,
  body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .container-flex {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .login-section {
    justify-content: start !important;
  }
}

@media (max-width: 768px) {
  .container-login {
    flex-direction: column;
    border-radius: 0px;
  }

  .welcome-section {
    display: none;
  }

  .login-section {
    width: 100%;
    padding: 30px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .login-section .logo {
    display: block;
    margin: 20px;
  }

  .btn-register-mobile {
    display: block;
    margin-top: 20px;
    background-color: #338d7f;
    border: none;
    color: #FFFFFF;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
  }

  .btn-register-mobile:hover {
    background-color: #00285E;
    color: #FFFFFF;
    transform: translateY(-3px);
  }
}

.login-header {
  text-align: center;
  margin-bottom: 20px;
  color: #338d7f;
  font-weight: bold;
  font-size: 2.5em;
}

.logo {
  width: 150px;
  height: auto;
}

.btn-enviar-login {
  background-color: #338d7f;
  border: none;
  font-weight: bold;
  padding: 15px;
  border-radius: 50px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background-color: #1d5a51;
  transform: translateY(-3px);
}

.form-control-custom {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #338d7f;
  transition: border-color 0.3s ease;
}

.form-control-custom:focus {
  border-color: #00AEEF;
  box-shadow: none;
}

.form-label-custom {
  font-weight: bold;
  color: #338d7f;
}

.forgot-password {
  text-align: right;
  margin-top: 10px;
}

.forgot-password a {
  color: #414141;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.forgot-password a:hover {
  color: #338d7f;
  text-decoration: underline;
}

.logpass {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 11pt;
}

.input-group {
  position: relative;
}



.input-group-text {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  padding: 0;
}

input {
  border-radius: 10px !important;
}

#toggle-icon {
  font-size: 16pt;
  position: relative;
  top: 4px;
  right: 10px
}

.senha-wrapper {
  position: relative;
}

#senhaPopover {
  left: 50%;
  transform: translateX(-50%);
  top: -175px;
  width: 320px;
  pointer-events: none;
  transition: opacity 0.18s;
}

#senhaPopover.show {
  pointer-events: auto;
}