html#login
{}

#login #app
{
	grid-template-areas:
		'header'
		'main';
	grid-template-rows: auto 1fr;
}

#login-header
{
  padding: 15px 0;
	box-shadow: 0 2px 1px 0 rgba(0,0,0,0.1);
	z-index: 10;
}
#login-header a {
  display: inline-block;
  margin: 0;
}

#login-main
{
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
}

#login-main-container
{
  display: grid;
	grid-template-columns: 2fr 6fr;
  height: 100%;
}

#login-aside
{
  background-color: var(--body-bgc);
}

#login-aside-logo
{
  display: block;
  padding: 45px 30px;
}
/*distorceu o logotipo, antes de aplicar deverá pegar novos logos com todos os clientes*/
#login-aside-logo img
{
  display: block;
  margin: 0 auto;
  /*width: 100%;
  max-width: 180px;*/
}

#login-aside-title
{
  display: block;
  background-color: rgba(0,0,0,.05);
  color: var(--cor-neutra-9);
  padding: 12px 30px;
  font-weight: 400;
}
#login-aside-title i+span
{
  margin-left: 5px;
}


#login-form
{
  padding: 30px;
}
#login-form .form-group
{
  display: block;
  margin-bottom: 15px;
}

#login-form label
{
  color: var(--cor-neutra-9);
  display: block;
  font-size: 15rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

#login-form .form-control
{
	padding: 15px;
	border-radius: var(--aside-searchform-radius);
}

#login-btn-submit
{
  background-color: var(--cor-atria-1);
  border-color: var(--cor-atria-1);
  border-radius: var(--radius-sm);
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: bold;
  color: #FFF;
  margin: 0;
  font-size: 15rem;
}
#login-btn-submit:hover
{
  opacity: 0.8 !important;
}
.login-form-password-reset
{
  margin-top: 10px;
  font-size: 12rem;
}
.login-form-password-reset a
{
  color: var(--cor-primaria);
}
.login-form-password-reset a:hover,
.login-form-password-reset a:focus
{
  text-decoration: underline;
}

#login-content
{
  padding-top: 45px;
  padding-left: 45px;
}

#login-content-header
{
  background-color: rgba(0,0,0,.2);
  padding: 20px 30px;
  color: #fff;
}
#login-content-header p
{
  margin-bottom: 0;
}
#login-content-header-title
{
  font-weight: 300;
  font-size: 26rem;
  letter-spacing: 0;
}

#login-content-cliente
{
  background-color: #fff;
  background-image: url(../img/loading.gif);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding: 15px;
}

#login-content-cliente-img
{
  width: 100%;
}

#login-content-footer
{
  color: #fff;
  padding: 15px 0;
}
#login-content-footer a:hover
{
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  #app {}
  #login-header {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #login-header img {
    width: auto;
    max-height: 25px;
  }
  #login-main-container {
    grid-template-columns: 1fr;
    padding-top: 20px;
    max-width: 600px;
  }
  #login-aside {
    border-radius: 4px;
  }
  #login-content {
    padding: 10px 0 0;
  }
  #login-content-header {
    padding: 20px;
    border-radius: 4px 4px 0 0;
  }
  #login-content-cliente {
    border-radius: 0 0 4px 4px;
  }
  #login-content-header-title {
    font-size: 20rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
  #login-content-footer {
    text-align: center;
  }
  #login-content-footer p {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1239px) {
  :root {
    --app-min-width: initial;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}