@charset "utf-8";


/* @import url//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css); */



div.main{
    background: #d0d5db; /* Old browsers */

height:calc(100vh);
width:100%;
color:"#1c2b5a"
}

[class*="fontawesome-"]:before {
  font-family: 'FontAwesome', sans-serif;
}

/* ---------- GENERAL ---------- */

* {
  color:"#849eba";
  box-sizing: border-box;
    margin:0px auto;

  &:before,
  &:after {
    box-sizing: border-box;
  }

}

body {
   
  color: #606468;
  font: 87.5%/1.5em 'Open Sans', sans-serif;
  margin: 0;
}


input {
	border: none;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5em;
	padding: 0;
	-webkit-appearance: none;
}

p {
	line-height: 1.5em;
}

.clearfix {
  position:relative;
  zoom: 1;

  &:before,
  &:after {
    content: ' ';
    display: table;
  }

  &:after {
    clear: both;
  }

}

.container {
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- LOGIN ---------- */


#login{
  width: 59%;
}

.logo{
color:#fff;
font-size:50px;
  line-height: 125px;
}

fieldset{
    padding:0;
    border:0;
    margin: 0;

}

#login > p {
	text-align: center;
}

#login > p span {
	padding-left: 5px;
}
.middle {
  display: flex;
  width: 600px;
}
svg {
    vertical-align: middle;
    /* width: 100%; */
    color: red;
    filter: drop-shadow(5px 6px 3px rgb(132, 158, 186 ));
}


  .btn {
    line-height: 50px;
    height: 50px;
    text-align: center;
    width: 250px;
    cursor: pointer;
  }

  
  .btn-one {
    color: #FFF;
    transition: all 0.3s;
    position: relative;
    margin: 10px;
    width: 95%;

  }
  .btn-one span {
    transition: all 0.3s;
  }
  .btn-one::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-top-color: rgba(255,255,255,0.5);
    border-bottom-color: rgba(255,255,255,0.5);
    transform: scale(0.1, 1);
  }
  .btn-one:hover  {
    letter-spacing: 2px;
    box-shadow: 0px 2px 5px #849eba;
  }

  .btn-one:hover::before {
    opacity: 1; 
    transform: scale(1, 1); 
  }
  .btn-one::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s;
    background-color: rgba(255,255,255,0.1);
  }
  

  .lightbar {
    position: absolute;
    top: 0;
    right:-25px;
    width:6px;
    height: 100%;
    border-radius: 10px;
    background:#1c2b5a;
    box-shadow: 
    4px 0 10px #849eba, 
    2px 0 20px #849eba,
    1px 0 40px #849eba,
    1px 0 80px #849eba,
    1px 0 120px #849eba;
  }

  @media only screen and (max-width: 600px) {
    #login {
      width: 88%;
    }
    svg {
      width: 80%;
  }
  .middle {
    width: 100%;
  }
  
  }