body {
  font-family: "Roboto", sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

p {
  color: #000;
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Roboto", sans-serif;
  text-align: center;
  color: #003b8f;
  font-weight: bold;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

a:hover {
  text-decoration: none !important;
}

.content {
  padding: 7rem 0;
}

h2 {
  font-size: 20px;
}

/* ==========================
   ESTRUTURA PRINCIPAL LOGIN
========================== */

.half {
  width: 100%;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

/* LADO DA IMAGEM */
.bg-login {
  width: 50%;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #f8fbff;
}

/* LADO DO FORMULÁRIO */
.contents-login {
  width: 50%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 40px;
}

.login-box {
  width: 100%;
  max-width: 430px;
  padding: 35px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.10);
}

.login-box h3 {
  font-size: 28px;
  color: #003b8f;
  margin-bottom: 8px;
}

.subtitulo-login {
  font-size: 15px;
  color: #666;
  font-weight: 400;
  margin-bottom: 0;
}

/* ==========================
   CAMPOS DO FORMULÁRIO
========================== */

input[type=text],
input[type=password] {
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;

  box-shadow: 1px 1px 4px rgba(51, 51, 51, 0.25);
  -moz-box-shadow: 1px 1px 4px rgba(51, 51, 51, 0.25);
  -webkit-box-shadow: 1px 1px 4px rgba(51, 51, 51, 0.25);

  background: #f4f6f9;
  border: 1px solid #d9d9d9;
  color: #000;
}

input[type=text]:hover {
  background: #eefaf0;
  color: #000;
  border: 1px solid #2ba84a;
}

input[type=password]:hover {
  background: #fff4e8;
  color: #000;
  border: 1px solid #f0ad4e;
}

.form-control {
  height: 52px;
  font-size: 17px;
}

.form-control:active,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #007bff;
}

.input-group-text {
  border-radius: 8px 0 0 8px;
  border: none;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-group .form-control {
  border-radius: 0 8px 8px 0;
}

.invalid {
  border-color: #dc3545 !important;
}

/* ==========================
   BOTÃO
========================== */

.btn-login {
  width: 100%;
  font-size: 18px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
}

.btn-login:hover {
  background-color: #00BFFF;
}

/* ==========================
   RESPONSIVO
========================== */

@media (max-width: 991.98px) {
  .half {
    flex-direction: column;
  }

  .bg-login {
    width: 100%;
    min-height: 350px;
    background-size: contain;
    background-position: center center;
  }

  .contents-login {
    width: 100%;
    min-height: auto;
    padding: 35px 15px;
  }

  .login-box {
    max-width: 100%;
    padding: 25px;
    box-shadow: none;
  }

  .login-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .bg-login {
    min-height: 280px;
  }

  .contents-login {
    padding: 25px 12px;
  }

  .login-box {
    padding: 20px;
  }

  .form-control {
    height: 48px;
    font-size: 16px;
  }

  .btn-login {
    font-size: 16px;
  }
}