
body {
  background: url("/img/ctifoto.png") no-repeat center center fixed;
  background-size: cover;
  font-family: "Lato", Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}


.caixa-de-login {
  background: rgba(255, 255, 255, 0.93);
  border-radius: 16px; 
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
  padding: 50px 45px;       
  width: 300px;             
  height: 275px;            
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.texto-entrar {
  font-family: "Lato", sans-serif;
  font-size: 28px;
  color: #116C8B;
  margin-bottom: 25px;
  font-weight: bold;
}


input[type=text], 
input[type=password] {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border: 1.8px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s;
}

input[type=text]:focus, 
input[type=password]:focus {
  border-color: #116C8B;
  box-shadow: 0 0 6px rgba(17, 108, 139, 0.4);
  outline: none;
}


.entrar {
  background-color: #116C8B;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.entrar:hover {
  background-color: #fff;
  color: #116C8B;
  border: 1px solid #116C8B;
}


.organizacao {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.caixa-de-vef {
  display: flex;
  align-items: center;       
  gap: 8px;                  
  margin-top: 1vh;
}

.texto-lembrar-me label,
.texto-lembrar-me {
  font-size: 15px;
  color: #444;
  margin: 0;
  vertical-align: middle;
}

.esqueci-senha {
  color: #2ea3ca;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.esqueci-senha:hover {
  color: #116C8B;
  text-decoration: underline;
}


.checkbox-wrapper-13 input[type=checkbox] {
  accent-color: #116C8B;
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0;                 
  vertical-align: middle;
}


@media (max-width: 768px) {
  .caixa-de-login {
    width: 80%;
    padding: 35px 25px;
  }
  .texto-entrar {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .caixa-de-login {
    width: 90%;
    padding: 30px 20px;
  }
  .organizacao {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .entrar {
    font-size: 15px;
  }
}
