body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: white;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;}

.wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F4F4F4; /* opcional: fundo mais suave */
  
}

.card-box {
  display: flex;
  width: 1482px;
  height: 850px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: white;
  border: 2px solid #93C2CC;
}


.left-panel {
  flex: 1;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.logo-img {
  max-width: 300px;
  height: auto;
  margin-bottom: 30px;
}

.subtext {
  font-size: 16px;
  color: #000;
  margin-top: 20px;
}

.right-panel {
  flex: 1;
  background-color: #9ec3cb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  border-radius: 0px 0px 0px 0px;
}

.right-panel h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.right-panel h2 {
  position: relative;
  top: -150px;
  left: 100px;
  font-size: 36px;
  margin-left: 196px;
  margin-bottom: 30px;
  font-weight: 600;
  
}

.welcome {
  position: relative;
  top: -150px;
  left: 60px;
  font-size: 30px;
  margin-left: 130px;
  margin-bottom: 30px;
  font-weight: 600;
}

label {
  
  font-weight: bold;
  margin-top: 20px;
  display: block;
  position: relative;
  top: -90px;
  left: 90px;
}

.input-group {
  display: flex;
  align-items: center;
  background: #9ec3cb;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 15px;
  width: 70%;
  height: 30px;
  border: 1px solid #000;

  position: relative;
  top: -90px;
  left: 90px;
}

.input-group i {
  margin-right: 10px;
  color: #999;
}

.input-group input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  background-color: #9ec3cb;
}

.login-button {
  margin-top: 10px;
  width: 70%;
  padding: 12px;
  background-color: black;
  color: #fcfcfc;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;

  position: relative;
  top: 80px;
  left: 90px;
}

.subtext {
  font-size: 25px;
  color: #000;
  margin-top: 200px;
}

.left-panel img {
  max-width: 100%;
  height: auto;
}




.alerta-message {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 600;
  position: relative;
  left: 160px;
  color: #000000;
 
  
}

.new-account{
  display: flex !important;
  position: relative !important;
  left: 450px !important;
  bottom: 100px !important;
  color: #000000 !important;
}

.alerta-message.error {
  color: #790d01d7; /* vermelho */
}

.alerta-message.success {
  color: #2ecc71; /* verde */
}




/*Animação com JS ao logar*/


/* ANIMAÇÃO ESTILOSA */
.card-box.expand-left {
  position: relative;
  overflow: hidden;
}

.card-box.expand-left #left-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* Animação suave */
  animation: slideScaleFade 1.5s ease forwards;
}

.card-box.expand-left #right-panel {
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes slideScaleFade {
  0% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) scale(0.9);
    opacity: 0;
  }
}


/* Responsividade */
@media (max-width: 1366px) {
  .card-box {
    flex-direction: column;
    height: auto;
  }

  .left-panel, .right-panel {
    width: 100%;
    flex: none;
    padding: 20px;
  }

  .logo-img {
    max-width: 180px;
  }

  .right-panel h2 {
    font-size: 24px;
  }

  .welcome {
    font-size: 20px;
  }
}
