body {
  font-family: 'Roboto', sans-serif
  line-height: 1.5;
  color: #ffffffa3;
  overflow-y:hidden;
  display: block;
}
html {  
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
p, div {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}


body {
  * {
    &:focus, &.focus,
    &:active, &.active {
      outline: transparent none 0 !important;
      box-shadow: 0 0 0 0 rgba(0,123,255,0) !important;
      -webkit-box-shadow: none !important;
    }
  }
}






p {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: #2c3e50;;
  text-align: center;
  animation-delay: 2s;
}

a {
  color: #2c3e50;
}
a:hover {
  color: #2c3e50;
}





.bg {
  background: url(../img/texture1.jpg) repeat;
  height: 1400px;  
  width: 100%;
  display:block;
}
.form-signin {
  padding: 5px;
  margin-left: auto;
  margin-right: auto;
  width: 220px;
}



.remember_forgot_wrap {
    display: flex;
}
.rememberbox {
  float:left;
  text-align: left;
  padding-top: 10px;
  font-size: 12px;
  width:50%;
}
.rememberbox label {
  color: #2c3e50;
}
.rememberbox label:hover {
  color: #2c3e50;
  text-decoration: underline;  
}



.forgot_link {
  color: #2c3e50;  
}




.forgotbox {
  float: right;
  text-align: right;
  padding-top: 12px;
  font-size: 12px;
  width: 50%;
}
.copyright {
  margin-top:100px;
}

.form-signin-heading1{
  font-size: 85.4px;
  line-height: 58px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  cursor:default;
}
.form-signin-heading2{
  font-size: 35px;
  line-height: 19px;
  font-weight: 600;
  color:#fff;
  text-align: center;
  cursor:default;    
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
  margin-bottom: 10px;
}
.form-signin .checkbox {
  font-weight: normal;
}
.form-signin .form-control {
  position: relative;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0px 20px 10px;
  font-size: 12px;
}
.form-control{
  border-radius:0px!important;
  border: 2px solid #ccc;
}
.btn-group-sm>.btn, .btn-sm {
  border-radius:0px!important;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="username"] {
}
.form-signin input[type="password"] {
  margin-top:5px;
}
.form-signin #inputSubmit {
  margin-top:5px;
  background: #2c3e50;
  border:0px;
  padding: 10px;
  text-shadow: normal;
}
.form-signin #inputSubmit:hover{
  background: #172028;
}

.form-signin #inputSubmit:focus{
  border: 0px!important;
}


.form-control:focus {
  border-color: #2c3e50;
  outline: 0;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: thin dotted!important;
}

.form-signin .remember {
  font-size:12px;
}
#inputUsername, #inputPassword {
  margin-top:5px;
}
.container {
  padding-top:200px!important;  
}
@media (max-width: 1100px){
.container {
    padding-top:50px!important;
}
}















/* Base for label styling */
  [type="checkbox"]:not(:checked),
  [type="checkbox"]:checked {
    position: absolute;
    left: 0;
    opacity: 0.01;
  }
  [type="checkbox"]:not(:checked) + label, [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 27px;
    padding-top: 2px;
    font-size: 12px;
    cursor: pointer;
  }

  /* checkbox aspect */
  [type="checkbox"]:not(:checked) + label:before,
  [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 21px;
    border: 2px solid #aaa;
    background: #FFF;
    border-radius: 1px;
    /* box-shadow: inset 0 1px 3px rgb(0 0 0 / 10%), 0 0 0 rgb(203 34 237 / 20%); */
    -webkit-transition: all .275s;
    transition: all .275s;
  }

  /* checked mark aspect */
  [type="checkbox"]:not(:checked) + label:after,
  [type="checkbox"]:checked + label:after {
    content: '✕';
    position: absolute;
    top: 0.6em;
    left: 0.2em;
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50;
    line-height: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
  }

  /* checked mark aspect changes */
  [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
  }

  [type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
  }

  /* Disabled checkbox */
  [type="checkbox"]:disabled:not(:checked) + label:before,
  [type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #e9e9e9;
  }

  [type="checkbox"]:disabled:checked + label:after {
    color: #777;
  }

  [type="checkbox"]:disabled + label {
    color: #aaa;
  }

  /* Accessibility */
  [type="checkbox"]:checked:focus + label:before,
  [type="checkbox"]:not(:checked):focus + label:before {
    /*box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 6px rgba(203, 34, 237, .2);*/
  }