/* Estilo para a tela de login */
input[type="text"],
input[type="email"],
input[type="password"] {
  height: 60px;
  font-size: 16px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(50, 50, 71, 0.08);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.btn-primary,
.btn-success {
  height: 50px;
  font-size: 16px;
  padding: 10px 12px;
  line-height: normal;
  border: none;
  border-radius: 4px;
  width: 100%;
  margin-top: 10px;
  color: #fff;
  background-color: #34bcf7;
  border-color: #34bcf7;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}

a {
  display: block;
  text-align: center;
}

a:hover {
  text-decoration: underline;
  cursor: pointer;
  color: #3a4f6b;
}

.login_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login_wrapper .animate.form {
  max-width: 650px; 
  background: #ffffff;
  padding: 20px;
  border-radius: 5px;
  /* max-width: 30%; */
}

.login_content h3 {
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}

.login_content p {
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

.login_wrapper .login_form .login_content form img{
    max-width: 70%;
    margin: auto;
}

/* Estilização do Loading da pagina */
.overlay-loading {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  /* bottom: -50px; */
  background: rgba(255, 255, 255, 1);
  z-index: 2000;
  left: 0;
  /* display: flex; */
}
@media (max-width: 767px) {
  body,
  .btn,
  .form-control {
    font-size: 18px;
  }

  /* form a {
        font-size: 18px !important;
      } */

  input.form-control {
    height: 46px;
  }

  .overlay-loading {
    display: none;
  }
}

.msg-loading {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}


@media (min-width: 992px) { 
  .login_wrapper .animate.form {
    max-width: 30%;
  } 
}