body{
	background:url('../img/bg-header.jpg') no-repeat;
	background-size:cover;
}
.side-login {
    float: left;
    padding: 0px 20px;
    height: 100vh;
    width: 350px;
    background: #21387c;
    position: relative;
}
.side-login a {
    color: #fff !important;
}
.side-login .logos img {
    height: 24px;
}
.input-group-text{
	color:#fff;
	background-color: #e6713c;
	border: 1px solid#2e4484;
}
.form-control,
.btn{
	height:50px;
}
.btn-primary {
    color: yellow;
    background-color: #e46f43;
    border-color:#e46f43;
}
.btn-primary:hover{
    color: yellow;
    background-color: #b7532e;
    border-color: #b7532e;
}
a{
	color: #25466d;
}
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%;
	}
}