.div-login {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: calc(100% - 48px);
  justify-content: space-evenly;
}

.div-login .form {
  padding: 20px;
}

.div-suporte {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

/* Buttons */

.btn-acessar {
  width: 100%;
  height: 65px;
  font-size: 1.5rem;
  color: black;
  font-weight: bold;
  border-radius: 15px;
  background: linear-gradient(45deg, #fbff7f, #ecff11);
}

.btn-acessar:hover,
.btn-acessar:focus,
.btn-acessar:active {
  color: black !important;
  background: linear-gradient(-45deg, #fbff7f, #ecff11);
}

.btn-suporte,
.btn-tutorial {
  display: block;
  width: 250px;
  padding: 15px;
  color: white;
  font-size: 13px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  background-color: #1b2362;
  box-shadow: 2px 2px 8px 0px #080b1e;
  cursor: pointer;
}

.btn-suporte:hover,
.btn-tutorial:hover {
  color: white;
  background-color: #111947;
}

.btn-suporte p,
.btn-tutorial p {
  margin: 0;
}


/* Inputs */

label {
  font-weight: bold;
}

input {
  border-radius: 15px !important;
  line-height: 2 !important;
  height: 65px;
  margin-bottom: 5px;
  outline: 0;
}

/* Texts */

.login-title {
  color: white;
  text-align: center;
}

/* Logo */

.logo-img {
  text-align: center;
}

@media screen and (min-width: 900px) {
  .logo-img img {
    width: 350px;
    height: 250px;
    padding: 0%;
  }

  .div-login {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    height: 100%;
    justify-content: space-around;
    align-content: center;
  }
}

@media screen and (max-width: 340px) {

  .btn-acessar {
    width: 100%;
    height: 50px;
    font-size: 1.2rem;
    color: black;
    font-weight: bold;
    border-radius: 15px;
    background: linear-gradient(45deg, #fbff7f, #ecff11);
  }

  input {
    border-radius: 15px !important;
    line-height: 2 !important;
    height: 45px;
    margin-bottom: 5px;
    outline: 0;
  }

  .btn-suporte,
  .btn-tutorial {
    display: block;
    width: 250px;
    padding: 15px;
    color: white;
    font-size: 13px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    background-color: #1b2362;
    box-shadow: 2px 2px 8px 0px #080b1e;
    cursor: pointer;
    padding: 7px;
  }

}