body {
    background: url("images/body-background.jpg") no-repeat 0 0;
    background-size: cover;
    overflow-x: hidden;
}
.fullheight {
    width: 100%;
    height: 100vh;
}
.auto {margin: auto;}
header {
    background-color: #3F4156;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
}
h1 {font-size: 48px;}
.circlebtn {
    width: 48px;
    height: 48px;
    line-height: 17px; 
    color: #febd0d;
    background-color: transparent;
    border-radius: 100%;
    padding-left: 6px;
padding-top: 7px;
text-align:center;
}

.circlebtn:hover {
  text-decoration: none; 
  color: #febd0d;
    background-color: transparent;
}
.circlebtn .lnr {
  font-size: 24px;
  font-weight: 800;
}
.posicon {
    width: 32px;
    height:32px;
    position: absolute;
    top:12px;
    color:#f12f38;
    left: 0;
}
/* form starting stylings ------------------------------- */
.group 			  { 
    position:relative; 
    margin-bottom:24px; 
  }
  input[type="text"],input[type="email"],input[type="password"],select 				{
    font-size:18px;
    padding:10px 10px 10px 5px;
    display:block;
    width:300px;
    border:none;
    border-bottom:1px solid #757575;
    background-color: transparent;
    font-size: 16px;
  }
  input[type="text"]:focus, input[type="email"]:focus,input[type="password"]:focus 		{ outline:none; }
  .login input[type="text"], .login input[type="email"],.login input[type="password"],select {width:100%}
  .login .bar {width: 100%;}
  .group input[type="text"],.group input[type="email"],.group input[type="password"], select {
    padding-left: 25px;
}
  /* LABEL ======================================= */
  .group label 				 {
    color:#999; 
    font-size:16px;
    font-weight:normal;
    position:absolute;
    pointer-events:none;
    left:25px;
    top:10px;
    transition:0.2s ease all; 
    -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
  }
  
  /* active state */
  input:focus ~ label, input:valid ~ label, .valid ~ label 		{
    top:-20px;
    font-size:14px;
    color:#2e1966;
  }

  .row { 
    margin-right: 0;
    margin-left: 0;
  }

  input[type="submit"], .link {
      background-color: #2e1966;
      padding: 12px 30px;
      color:#fff;
      text-align: center;
      display: inline-block;
      border-radius: 30px;
      font-size: 13px;
      border:0;
      margin-top: 10px;
  }
  input[type="submit"]:hover, .link:hover {
    background-color: #1e1966;
    color: #fff;
  }

  ::-webkit-input-placeholder { /* Edge */
    font-size:14px;
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-size:14px;
  }
  
  ::placeholder {
    font-size:14px;
  }

  /* BOTTOM BARS ================================= */
.bar 	{ position:relative; display:block; width:300px; }
.bar:before, .bar:after 	{
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#2e1966; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%; 
}

/* active state */
input:focus ~ .bar:before, input:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
	from { background:#2e1966; }
  to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
	from { background:#2e1966; }
  to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
	from { background:#2e1966; }
  to 	{ width:0; background:transparent; }
}

.martop {margin-top: 24px;}

.bmartop {margin-top: 36px;}

.anch {color:#333}

@media all and (max-width:767px) {
    .text-center-sm {
        text-align: center;
    }
    h1 {font-size: 24px;}
    h1 br {display: none;}
    .loginpanel {text-align: center; margin: 40px 0; padding: 30px 0;}
    .group {
        width: 90%;
        margin: 0 auto 35px;
    }
    .group input[type="text"], .group input[type="email"],.group input[type="password"],.bar {width:100%}
    .mobbox {
        width: 90%;
        margin: 40px auto;
        background-color: #fff;
        padding: 30px;
        border-radius: 20px;
    }
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #2e1966;
  color: white;
  text-align: center;
  height: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}