body {
	font-family: "open sans", "segoe ui", sans-serif;
	font-size: 14px;
	margin: 0;
	padding: 0;
}
.page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 350px;
  z-index: 1;
}
.formulario {
  background-color: #FFFFFF;
  padding: 25px;
}

/* BACKGROUND */
.background, .backdrop {
	background-color: #3f689c;
	position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
	background-size: cover;
}
.backdrop {
	background: #333333;
	filter: alpha(opacity=90);
	opacity: .8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
.background {
	background-image: url(../img/banner/home-banner.jpg);
}

/* HEADER */
.formulario .header {
	text-align: center;
}
.formulario .header h3 {
	font-weight: lighter;
  font-size: 25px;
  margin: 10px 0;
}
/* logo */
.formulario .header .logo {
	border: 1px solid #CCC;
  border-radius: 50%;
  margin: 0 auto;
  width: 87px;
  height: 87px;
}
.formulario .header .logo .logo-area {
	border: 1px solid #CCC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  margin: 5px;
}
/* fonte */
.formulario .header .logo .logo-area {
  background: #F2F2F2;
  color: #0D0D0D;
  font-size: 14px;
  font-weight: bold;
}
.formulario .header .logo .red { 
  color: #DC143C; 
}

/* INPUT */
.formulario .icone {
  width: 30px;
  vertical-align: middle;
  border: 0;/**/
  padding: 0;/**/
}
.formulario .input {
	border-bottom: 1px solid #CCCCCC;
  margin-top: 15px;
  font-size: 20px;
  color: #9e9e9e;
	padding-bottom: 5px;
}
.formulario .input input {
	border: 0;
	width: calc(100% - 71px);
  padding: 0;/**/
}
.formulario .input input:focus {
    outline: none;
}
.formulario #show-password {
	cursor: pointer;
}

/* EXTRAS */
.formulario .remember {
	margin-top: 15px;
}
.formulario .remember a {
	float: right;
}
.formulario .remember span {
	vertical-align: top;
}

/* BOTOES */
.formulario .btn {
	cursor: pointer;
  display: block;
  border: 0;
  height: 20px;
  padding: 10px;
  font-size: 15px;
  text-align: center;
	transition: background .3s;
}
.formulario .btn:focus {
	outline: none;
}
.formulario .btn-login {
  background: #2f7fd6;
  color: #FFFFFF;
	margin-top: 15px;
  width: 100%;
  height: 40px;
}
.formulario .btn-login:hover {
	background: #1e6fb8;
}
.formulario .btn-registrar {
  background: #dbdbdb;
  color: #676464;
  text-decoration: none;
	margin-top: 5px;
}
.formulario .btn-registrar:hover	{
	background: #cdcdcd;
}

/* SEPARADOR */
.formulario .separator {
    margin: 20px 0;
    border-top: 1px solid #CCCCCC;
    position: relative;
}
.formulario .separator-text {
    display: block;
    position: absolute;
    top: -11px;
    left: 50%;
    margin-left: -22px;
    padding: 0px 10px;
    background: #FFFFFF;
    color: #8a8a8a;
}

/* SOCIAL MEDIA LOGIN */
.formulario .btn-face {
	background: #3b5998;
  color: #FFFFFF;
  text-decoration: none;
  text-align: left;
}
.formulario .btn-face:hover {
	background: #324b80;
}
.formulario .btn-google {
	background: #ef0a0a;
  color: #FFFFFF;
  margin-top: 5px;
  text-decoration: none;
  text-align: left;
}
.formulario .btn-google:hover {
	background: #d40909;
}
.formulario .btn-icone {
  border-right: 1px solid #FFFFFF;
  margin-right: 14px;
  margin-top: -4px;
  padding-right: 10px;
  width: 25px;
	font-size: 16x;
  vertical-align: middle;
}
.formulario .socmed-login .btn span {
  display: inline-block;
  width: calc(100% - 55px);
  height: 100%;
  text-align: center;
}

@media (max-width: 261px) {
  .xs-hidden {
    display: none !important;
  }
}
@media (min-width: 262px) {
  .xs-show {
    display: none !important;
  }
}

/* ATRIBUIÇÃO */
.attrib {
  text-align: center;
  margin-top: 7px;
  color: #aaa;
  line-height: 25px;
}