/* ========================================================================
   Component: layout     background: #000000 url("../img/bg.png") top left repeat;

 ========================================================================== */
h2{
  color: #92969A;
  font-size: 1em;
}
.main-content{
  width: 50%;
  border-radius: 20px;
  box-shadow: 0 5px 5px rgba(0,0,0,.4);
  margin: 5em auto;
  display: flex;
}
.logo-info{
  border-top-right-radius:20px;
  border-bottom-right-radius:20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: black;
}
.login-form{
  background-color: #fff;
  border-top:1px solid #ccc;
  border-right:1px solid #ccc;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}


.input-form-control{
  width: 100%;
  border:0.5px solid ;
  padding: .5em .5em .5em;
  padding-left: 1em;
  outline:none;
  transition: all .5s ease;
  border-radius: 3px
}
.input-form-control:focus{
  border-bottom-color: #5899eb;
  box-shadow: 0 0 5px rgba(0,80,80,.4); 
  border-radius: 4px;
}


.btn{
  transition: all .5s ease;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 1em;
  background-color: #fff;
  color:#808080;
  border: 1px solid #808080;
  border-radius: 30px;
}

.btn:hover, .btn:focus{
  background-color: #666666;
  color:#fff;
}

.cadastro{
  background-color: #fff;
  color:#5899eb;
  border: none;
}
.cadastro:hover,.cadastro:focus{
  background-color: #5899eb;
  color:#fff;
  border-radius: 3px;
}

 .login{
  background-color: #5899eb;
  color:#fff;
  border: 1px solid #5899eb;
  border-radius: 3px;
}
.login:hover,.login:focus{
  background-color: #fff;
  color:#5899eb;
}


.mb-15{
  margin-bottom: 15px;
}
.mt-15{
  margin-top: 15px;
}

.text-central{
  margin-left: 0.2em;
  text-align: left;
  font-size: 1.8em; 
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
}
.separator::before, .separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #92969A;
}
.separator::before {
  margin-right: 1.25em;
}
.separator::after {
  margin-left: 1.25em;
}
@media screen and (max-width:1250px){
  .main-content{width: 70%;}
}
@media screen and (max-width: 640px) {
  .main-content{
    width: 100%;
    display: block;
  }
  .login-form{
      border-top-left-radius:0;
      border-bottom-right-radius:20px;
  }
  .logo-info{
    border-top-left-radius:20px;
    border-bottom-right-radius: 0;
  }
  .text-central{
    margin-left: 0em;
    text-align: center; 
  }
}
@media screen and (min-width: 642px) and (max-width:993px){
  .main-content{width: 70%; display: block;}
  .login-form{
    border-top-left-radius:0;
    border-bottom-right-radius:20px;
  }
  .logo-info{
    border-top-left-radius:20px;
    border-bottom-right-radius: 0;
  }
  .text-central{
    margin-left: 0em;
    text-align: center; 
  }
}


