body {
    background: url('../img/bg-header.jpg') no-repeat;
    background-size: cover;
}
.side-login {
    float: left;
    padding: 0px 20px;
    height: 100vh;
    width: 350px;
    background: #063B7C;
    POSITION: RELATIVE;
}
.side-login .w-100 span{
	background: #0b3c7a !important;
	color: #ffff !important;
}
.side-login  a{
		color:#fff !Impor;
}
.side-login .logos{
	background: #fff;
    padding: 10px;
    margin-bottom: 2px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.side-login .logos img {
    height: 24px;
}
.input-group-text{
	color:#fff;
	background-color: #07254b;
	border: 1px solid #07254b;
}
.form-control,
.btn{
	height:50px;
}
.btn-primary {
    color: white;
    background-color: #05254c;
    border-color: #05254c;
}
.btn-primary:hover{
    color: #fff;
    background-color: #093264;
    border-color: #093264;
}
a{
	color:#0a71a9;
}
a:hover{
	color:#094f75;
}
/* ---------------------------------------------------
    ESTILO DO CHECKBOX
----------------------------------------------------- */
*:focus {
    outline-color:red;
}
.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  border-radius:4px;
  background: #ddd;
}
.styled-checkbox:hover + label:before {
  background: #387837;
}
.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
  background: #387837;
}
.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
    .side-login {
        width: 100% !important;
        
    }
}