/*
body
{
 margin:0 auto;
 padding:0px;
 text-align:center;
 width:100%;
	font-family: 'Barlow', sans-serif;
 background-color:#8A4B08;
}
*/
/* LOGIN */
.bgLogin{
	position: relative;
	width: 100%;
	height: 100%;
	background: grey;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url('../img/slider/new/gettyimages-1003422054-2048x2048_be_gesp.jpg');
}
#wrapperLogin
{
 margin:0 auto;
 padding:0px;
 text-align:center;
 width:995px;
}
#wrapperLogin h1
{
 margin-top:50px;
 font-size:45px;
 color:white;
}
#wrapperLogin p
{
 font-size:16px;
}
#logout_form input[type="submit"]
{
 width:250px;
 margin-top:10px;
 height:40px;
 font-size:16px;
 background:none;
 border:2px solid white;
 color:white;
}
#login_form
{
	margin-top: 200px;
    background-color: white;
    width: 350px;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    top: calc(50% - 100px);
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 0px #3B240B;
    position: relative;
}
#login_form h1
{
 margin:0px;
 font-size:25px;
 color:#1368B1;
}
#login_form input[type="password"]
{
 width:250px;
 margin-top:10px;
 height:40px;
 padding-left:10px;
 font-size:16px;
}
#login_form input[type="submit"]
{
 width:246px;
 height:36px;
 font-size:16px;
 background: white;
 cursor: pointer;
 margin-left: 2px;
 margin-right: 2px;
 padding-top: 2px;
 padding-bottom: 2px;
}






.bgLogin .button{
  color: #1368B1;
  background: white;
  margin-top: 10px;
}
.bgLogin .button input{
  position: relative;
  color: #1368B1;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  margin-top: 10px;
}
.bgLogin .button a{
  position: relative;
  height: 40px;
  border: 1px solid #1368B1;
  padding: 10px 0px 10px 0px;
}

.bgLogin .button a:hover{
  border: none;
}
.bgLogin .button input:focus{
  outline: none;
}

.bgLogin .button a:hover > .line-1  {
  animation: move1 1500ms infinite ease;
}

.bgLogin .button a:hover > .line-2  {
  animation: move2 1500ms infinite ease;
}

.bgLogin .button a:hover > .line-3 {
  animation: move3 1500ms infinite ease;
}

.bgLogin .button a:hover > .line-4  {
  animation: move4 1500ms infinite ease;
}

  .line-1 {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    background-color: #1368B1;
    left: 0;
    bottom: 0;
  }
  .line-2 {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    background-color: #1368B1;
    left: 0;
    top: 0;
  }
  .line-3 {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    background-color: #1368B1;
    right: 0;
    top: 0;
  }
  .line-4 {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    background-color: #1368B1;
    right: 0;
    bottom: 0;
  }

@keyframes move1 {
  0% {
    height: 100%; 
    bottom: 0;
  }
  54% {
    height: 0; 
    bottom: 100%;
  }
  55% {
    height: 0; 
    bottom: 0;
  }
  100% {
    height: 100%; 
    bottom: 0;
  }
}

@keyframes move2 {
  0% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%; 
    left: 0;
  }
  100% {
    width: 0; 
    left: 100%;
  }
}

@keyframes move3 {
  0% {
    height: 100%; 
    top: 0;
  }
  54% {
    height: 0; 
    top: 100%;
  }
  55% {
    height: 0; 
    top: 0;
  }
  100% {
    height: 100%; 
    top: 0;
  }
}

@keyframes move4 {
  0% {
    width: 0; 
    right: 0;
  }
  55% {
    width: 100%; 
    right: 0;
  }
  100% {
    width: 0; 
    right: 100%;
  }
}

