﻿@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --primary: #2b2e4a;
  --secondary: #1e1f37;
}

body {
  margin-top: 5rem;
  background: url("../img/fundo-login.jpg") no-repeat center;
  background-size: cover;
  overflow: hidden;
}

@media (min-width: 992px) {
  body {
    margin-top: 0;
  }
}

.caixa-login {
  position: flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  background-color: #fff;
  color: #333;
  /* max-height: 100vh; */
  overflow-y: auto;
}

/* .caixa-login img.img-fluid {
    margin-bottom: 30px;
} */
@media (min-width: 992px) {
  .caixa-login {
    margin-right: -15px;
    padding: 30px;
    border-left: 4px solid var(--primary);
  }

  .caixa-login-centralizada .row {
    display: flex;
    align-items: center;
  }

  .caixa-login img.img-fluid {
    margin-bottom: 0;
  }
}

.caixa-login h4 {
  text-align: center;
  /* margin: 0 0 25px; */
  font-weight: 400;
}

.caixa-login h4.text-left {
  text-align: left;
}

@media (min-width: 992px) {
  .caixa-login h4 {
    margin: 0 0 40px;
  }
}

.caixa-login .logo-login {
  margin-bottom: 20px;
}

.caixa-login h3 {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 400;
}

.caixa-login h3>strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 500;
}

.caixa-login p {
  margin-bottom: 20px;
  font-size: 13px;
}

.caixa-login p>strong {
  font-weight: 500;
}

.caixa-login label:not(.checkbox-inline) {
  display: block;
  font-weight: 400;
  font-size: 16px;
}

.caixa-login label>strong {
  font-weight: 600;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  height: 40px;
  padding: 6px 20px;
  background-color: #fff;
  border-color: #bfbfbf;
  border-width: 1px;
  border-radius: 5px;
  color: #333;
  /*text-align: center;*/
  box-shadow: none !important;
}

@media (max-width: 991px) {
  .form-control {
    text-align: center;
  }
}

.form-control::-moz-placeholder {
  color: #585858;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #585858;
}

.form-control::-webkit-input-placeholder {
  color: #585858;
}

.esqueci-senha {
  margin-top: 7px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.esqueci-senha a {
  color: #000;
  text-decoration: underline;
  font-size: 14px;
}

.btn-formulario {
  padding: 10px 20px;
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s linear;
}

.btn-formulario:hover,
.btn-formulario:active,
.btn-formulario:focus {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  box-shadow: none;
}




body.login-page {
  background: #f0f2f5 !important;
  background-image: none !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 100vh !important;
  margin: 0 !important;
}

.caixa-login {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  padding: 40px 35px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  border-left: none !important;
}

.logo-login {
  width: 110px;
  margin-bottom: 15px;
}

h4 {
  font-weight: bold;
  color: #333;
  font-size: 18px;
  margin-bottom: 25px;
}

.form-control {
  border-radius: 10px;
  height: 45px;
}

.btn-formulario {
  background-color: #004aad;
  color: #fff;
  border-radius: 10px;
  font-weight: bold;
  height: 45px;
  font-size: 16px;
}

.btn-formulario:hover {
  background-color: #003c8f;
  color: #fff;
}

.esqueci-senha a {
  color: #004aad;
  font-size: 13px;
  text-decoration: none;
}

.esqueci-senha a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  body.login-page {
    background-color: #ffffff !important;
    align-items: flex-start !important;
    padding-top: 50px !important;
  }

  .caixa-login {
    box-shadow: none;
    border-radius: 0;
    height: auto;
    width: 100%;
    max-width: 100%;
  }
}