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

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
body{
    background-image: url("../../images/login-bg.jpg");
    background-size: cover;
}
.container {
  padding: 1px 0;
  height: 100%;
  width: 100%;  
  
  color: #fff;
  font-family: "Comfortaa", "Helvetica", sans-serif
}

.login {
  max-width: 280px;
  min-height: 400px;
  margin: 50px auto;
  background-color: rgba(10,10,10,.68);
}
.reg {
  max-width: 325px;
  min-height: 400px;
  margin: 50px auto;
  background-color: rgba(10,10,10,.68);
}
.username-input i    {
    font-size: 20px;
}
.reg .loginbtn {
    display: block;
    width: 240px;
    height: 40px;
    line-height: 0px;
    text-decoration: none;
    padding: 0;
    text-align: center;
    color: #fff;
    margin: 0px 16px 10px;
    font-weight: 700;
    background-color: #ff6600;
    border: none;
    border-radius: 20px;
    transition: background-color .10s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.login-icon-field {  
  width: 100%;
  text-align: center;
  padding: 20px 0;
  /*background-color: red;*/
}
.login-icon-field img {
  display: block;
  margin: 15px auto;
}

.login-icon {
  margin: 50px 65px;
}

.login-form {
  padding: 8px 20px 20px;
  height: 120px;
  width: 100%;
  /*background-color: green;*/
}
.reg-form{
    padding: 8px 20px 20px;
     width: 100%;
}

.row {
  display: none;
}

.username-row {
  position: relative;
  height: 40px;
  /*background-color: pink;*/
  border-bottom: 1px solid;
  margin-bottom: 10px;
}

.password-row {
  position: relative;
  height: 40px;
 /* background-color: grey;*/
  border-bottom: 1px solid;
}

.password-icon,
.user-icon {
  margin: 5px;
}

.password-icon .key-path,
.user-icon .user-path{
  fill: rgba(10,10,10,0);
  stroke: #fff;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  -webkit-animation: dash 3s .3s linear forwards;
  animation: dash 3s .3s linear forwards;
}

.user-icon .user-path {
  -webkit-animation: dash 3s .8s linear forwards;
  animation: dash 3s .8s linear forwards;
}

input {
  position: absolute;
  width: 195px;
  height: 30px;
  margin: 5px 0;
  background: transparent;
  border: none;
}

input:focus,
button:focus {
  outline: none;
}

input::-webkit-input-placeholder {
  /*color: rgba(255,255,255,.4);*/
}

input::-moz-placeholder {
  /*color: rgba(255,255,255,.4);*/
}
.reg .call-to-action{
    height: auto !important;    
}
.reg .call-to-action p{
    margin-top: 49px;
    text-align: center;
}
.call-to-action {
  /*!  */
  height: 130px;
  width: 100%;
  /**/
}

button,.loginbtn {
  display: block;
  width: 240px;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  padding: 0;
  text-align: center;
  color: #fff;
  margin: 10px 3px 10px;
  font-weight: 700;
  background-color: #ff6600;
  border: none;
  border-radius: 20px;
  transition: background-color .10s ease-in-out;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}

button:hover,.loginbtn:hover {
  background-color: orange;
}

button:active,.loginbtn:active {
  background-color: orange;
}

p {
  display: inline-block;
  width: 214px;
  margin: 0 40px;
  margin-left: 10px !important;
  color: rgba(255,255,255,.4);
  /*background-color: yellow;*/
}

p a {
  color: #fff;
}

label,
p a:hover {
  -webkit-cursor: pointer;
  cursor: pointer;
}
.col-md-6{
    width:50%;
    position:relative;
    float:left;
}
.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { 
position: relative !important;
    margin-top: -5px  !important;
    margin-left: -20px !important;
    width: 10px !important;
    float: left !important;
    cursor: pointer;
}
@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

