*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.d-flex { 
  display: flex;
}

.between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.dir-column {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.txt-largest {
  font-size: 16px;
}

.txt-green {
  color: var(--accent);
}

.background-white {
  background: var(--primary-contrast);
}

.background-green {
  background: var(--accent);
}

.background-lightgray {
  background: #ececec;
}

.background-gray {
  background: #a6a6a6;
}

.background-darkgray {
  background: #616161;
}

.border-green {
  border-color: var(--accent);
}

.border-lightgray {
  border-color: #ececec;
}

.border-gray {
  border-color: #a6a6a6;
}

.border-darkgray {
  border-color: #616161;
}

body {
  gap: 8vh;
  height: 100svh;
}
 
.logo {
    display: flex;
    justify-content: center;
    width: 450px;
}

.logo img {
  max-width: 100%;
}

form {
  background-color: var(--primary-contrast);
  width: 55vw;
  height: 100vh;
  box-shadow: 0px -1px 10px 0px #363636;
  position: relative;
}

form:before {
  content: "";
  background-image: url("https://abaco.geniumdigital.com.br/aluno_ips/img/onda.png");
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0);
}

.form-field {
  gap: 10px;
}

.form-field input {
  border-width: 1px;
  border-style: none;
  height: 40px;
  width: 268px;
  border-radius: 5px;
  padding: 5px;
  background-color: #f3f3f3 !important;
  padding-left: 15px;
}

.senha-container {
  position: relative;
  width: 307px;
  justify-content: center;
}

.toggle-password {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #81c980;
  font-size: 16px;
}

.submitButton {
  height: 40px;
  width: 295px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  margin: 5px 0 10px;
  color: #fff;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  body {
    flex-direction: column;
  }

  form {
    width: 100vw;
    height: 45vh;
  }

  .logo {
    width: 300px;
  }

  form:before {
    content: "";
    background-image: url("https://abaco.geniumdigital.com.br/aluno_ips/img/bg-login.png");
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, -100%);
  }
}
.captcha-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 80%;
}
.captcha-container input {
    width: 65%;
}
.captcha-img {
    height: 38px;
    border: 1px solid #ccc;
    padding: 3px;
    border-radius: 6px;
    object-fit: contain;         /* Mantém o texto reto dentro */
    background: #fff;
    cursor: pointer;
}

.captcha-input {
    flex: 1;
    height: 50px;
    border-radius: 6px;
    padding: 10px;
}


@media screen and (max-width: 468px) {
 
.captcha-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    width: 80%;
}
}


.remember-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    margin-top: 10px;
    font-size: 15px;
}

.remember-container input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #297127;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.remember-container input[type="checkbox"]:checked {
    background-color: #297127;
}

.remember-container input[type="checkbox"]:checked::after {
    content: "\f00c"; /* ícone do FontAwesome */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 14px;
    position: absolute;
    top: -3px;
    left: 2px;
}
