
/* --- FONTES ---- */
@font-face {
  font-family: 'raleway';
  src: url('../fonts/Raleway-Medium.ttf') format('truetype');
  src: url('../fonts/Raleway-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'raleway-bold';
  src: url('../fonts/Raleway-Bold.ttf') format('truetype');
}

b { font-family: 'raleway-bold'; }
.bold { font-weight: bold; }

body {
  font-family: 'raleway';
  font-size: 14px;
}
.clear {clear: both;}

.azul { color: #1b282e; }
.verde { color: #739a3b; }
.cinza { color: #565f66; }

/* Login Page ================================== */
.login-page {
   background-color: #e8eaeb;
   padding: 4% 15% 0;
}

.login-page .login-box .msg {
   color: #555;
   margin-bottom: 30px;
   text-align: center; 
}

.logo_ { float: left; }

.logo_ img {
   margin-bottom: 20px; 
   max-width: 250px;
}

.btn_voltar {
  font-size: 14px;
  text-decoration: none;
  float: right;
  color: #90a3ae;
  border: 1px solid #90a3ae;
  border-radius: 5px;
  padding: 10px 15px;
  font-weight: bold;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.btn_voltar:hover, .btn_voltar:active, .btn_voltar:focus {
  color: #fff;
  border: 1px solid #90a3ae;
  background-color: #90a3ae;
  text-decoration: none;
}

#resposta {
  text-align: right;
  color: red;
  display: none;
  margin-top: 10px;
} 

.card {
  display: flex;
  background: #fff;
  box-shadow: 0 0px 20px 5px #c7c7c7;
  position: relative;    
  width: 85%;
  margin: 0 auto;
  margin-top: 3%;
  border-radius: 10px;
}

.box_azul {
  width: 50%;
  float: left;
  background: url(../imagens/BG.jpg) no-repeat;
  background-size: cover;
  background-position: center bottom;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.box_azul_content { 
  padding: 30% 50px 0;
  line-height: 1.2;
}

.lista {
  margin-top: 15px;
  padding-left: 15px;
  color: #fff;
  line-height: 1.7;
  font-size: 13px;
}

.box_login {
  width: 50%;
  height: 100%;
  float: left;
}

.box_login_content { padding: 15% 10% 30px; }

input {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 20px;
  background-color: #e9e9e9;
  border: 1px solid transparent;
}

label {
  font-size: 18px;
  font-weight: bold;
}

.btn_entrar {
  background-color: #1b282e;
  border: 1px solid #1b282e;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 18px;
  color: #fff;
  border-radius: 8px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.btn_entrar:hover, .btn_entrar:focus , .btn_entrar:active {
  background-color: #739a3b;
  border: 1px solid #739a3b;
}

.link_forget {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #1b282e;
  font-weight: bold;
}

.contato_content {
  width: 100%; 
  height: 11px; 
  border-bottom: 1px solid #ccc; 
  text-align: center;
}

.contato_content span {
  font-size: 16px; 
  background-color: #fff; 
  padding: 0 10px;
}

.icones {
  text-align: center;
  padding-top: 20px;
}

.icones i {
  font-size: 30px;
  margin-left: 10px;
  color: #1b282e;
  vertical-align: middle;
}

.icones a:hover {
  text-decoration: unset;
}

.btn_infra {
  margin-top: 25px;
  display: block;
  background-color: #739a3b;
  border: 1px solid #739a3b;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 18px;
  color: #fff;
  border-radius: 8px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.btn_infra:hover, .btn_infra:focus , .btn_infra:active {
  background-color: #5a7b34;
  border: 1px solid #5a7b34;
  color: #fff;
  text-decoration: unset;
  cursor: pointer;
}

.footer {
  margin-top: 5%;
}

.footer p {
  text-align: center;
  font-size: 12px;
  color: #1f2324;
}

.mobile, .quebra1000 { display: none; }

@media screen and (max-width: 1250px) {
  .card {
    width: 100%;
    min-height: 500px;
    margin-top: 3%;
  }
}

@media screen and (max-width: 1020px) {
  .quebra1000 { display: block; }
}

@media screen and (max-width: 930px) {
  .box_azul, .box_login { width: 50%; }
  .box_login_content { padding: 40px 30px; }
}

@media screen and (max-width: 835px) {
  .mobile { display: block !important; }
  .login-page { padding: 4% 5% 0; }
  .card {
    display: block;
    height: auto;
    min-height: auto;
    width: 100%;
  }

  .card {
    margin: 0 20%;
    width: 60%;
  }

  .box_azul {
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    border-radius: unset;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .box_azul_content {
    padding: 30px 40px 0;
  }

  .box_login {
    width: 100%;
    height: auto;
    float: unset;
    background-color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .box_login_content {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 600px) {
  .card {
    margin: 0 auto;
    width: 70%;
  }
}

@media screen and (max-width: 500px) {
  .card {
    margin: 0;
    width: 100%;
  }
}