html, body {
    background-color: #fff !important;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
}
.container {
    height: 100%;
    width: 100%;
    max-width: initial;
}
.row {
    margin: 0;
    height: 100%;
}
.login-col {
    height: 100%;
    flex-direction: column;
    display: flex;
    justify-content: center; /* Centraliza verticalmente */
    align-items: center; /* Centraliza horizontalmente */
}
.logo {
    background-image: linear-gradient(75deg, #64A338, #003C54);
    text-align: center;
    font-size: 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.login {
    background-color: #fff; /* cor cinza claro */
    width: 100%;
    padding: 20px;
}
.form-container {
    display: flex;
    width: 100%;
}
.form-box {
    width: 100%;
}
.form-box h5 {
    margin-bottom: 20px;
}
/* 320px - 480px = mobile */
@media (min-width: 320px) {
    .mobile {
        display: block;
    }
    .desktop {
        display: none;
    }
}
/* 320px - 480px = mobile */
@media (min-width: 320px) and (orientation: landscape) {
    .mobile {
        display: block;
    }
    .desktop {
        display: none;
    }
}
/* 480px - 768px = tablet */
@media (min-width: 480px) {
    .mobile {
        display: block;
    }
    .desktop {
        display: none;
    }
}
/* 480px - 768px = tablet */
@media (min-width: 1280px) and (orientation: landscape) {
    .mobile {
        display: block;
    }
    .desktop {
        display: none;
    }
}
/* 768px - 1024px = telas menores, laptops */
@media (min-width: 768px) {
    .mobile {
        display: block;
    }
    .desktop {
        display: none;
    }
}
/* 1024px - 1200px = desktop */
@media (min-width: 1281px) {
    .mobile {
        display: none;
    }
    .desktop {
        display: block;
    }
}
/* 1024px - 1200px = desktop */
@media (min-width: 1281px) and (orientation: landscape) {
    .mobile {
        display: block;
    }
    .desktop {
        display: none;
    }
}
/* 1200 e + = telas maiores, tvs */
@media (min-width: 1281px) {
    .mobile {
        display: none;
    }
    .desktop {
        display: block;
    }
}
.cookieConsent.hide {
    display: none !important;
}
.cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    z-index: 1000;
}
.cookieConsent p {
    margin: 0;
    display: inline-block;
    padding-right: 10px;
}
.cookieConsent button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
.cookieConsent button:hover {
    background-color: #45a049;
}



.btn34, .btn-large34,
.btn-flat34 {
  background-color: #64A338;
  border-radius: 0px;
  box-shadow: none !important;
  display: inline-block;
  height: 38px;
  width: 200px;
  line-height: 36px;
  font-size: 13px;
  padding: 0;
  text-transform: none;
   text-align: center;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  color: #fff !important;
}

.btn34:hover {
  background-color: #3d691e;
  color: #fff !important;
}
