* {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}
html,
body {
  width: 100%;
  height: 100%;
    background: #D0DAE2 url("../img/loginbg.png") no-repeat center center fixed;
  font-family: 'Open Sans', sans-serif;
  font-weight: 200;
}
.login {
  position: relative;
  top: 50%;
  width: 300px;
  display: table;
  margin: -150px auto 0 auto;
  background: #fff;
  border-radius: 4px;
}
.legend {
    position: relative;
    width: 100%;
    display: block;
    padding: 15px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase;
    font-size:20px !important;
    font-weight: bold;
    background: #34bddc;
    border-radius: 7px 7px 0 0
}
.legend:after {
    content: "";
    background-image: url(../img/logo.png);
    background-size: 75px 45px;
    background-repeat: no-repeat;
    background-position: 217px -1px;
    opacity: 100;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
}
.input {
  position: relative;
  width: 90%;
  margin: 15px auto;
}
.input span {
  position: absolute;
  display: block;
  color: #d4d4d4;
  left: 10px;
  top: 8px;
  font-size: 20px;
}
.input input {
  width: 100%;
  padding: 10px 5px 10px 40px;
  display: block;
  border: 1px solid #EDEDED;
  border-radius: 4px;
  transition: 0.2s ease-out;
  color: #a1a1a1;
}
.input input:focus {
  padding: 10px 5px 10px 10px;
  outline: 0;
  border-color: #FF7052;
}
.submit {
  width: 45px;
  height: 45px;
  display: block;
  margin: 0 auto -15px auto;
  background: #ffc832;
  border-radius: 100%;
  border:4px solid #28d8d0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 0px 0px 0px 7px #fff;
  transition: 0.2s ease-out;
}
.submit:hover, .submit:focus {
  background: #e8a206;
  color: #fff;
  outline: 0;
}

label.error{color:red}
#error {
  position: absolute;
  bottom: -70px;
  width: 100%;
  text-align: center;
  color: #fff;
  background: #FF7052;
  padding: 6px 0;
  font-size: 11px;
}
#error:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(46, 204, 113, 0);
  border-bottom-color: #FF7052;
  border-width: 10px;
  margin-left: -10px;
}


.copyright{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    margin-top: 30%;
    font-weight: bold;
    font-size: 11px;
    line-height: 14px;
}


.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-right-color: rgb(204, 204, 204);
    border-right-style: solid;
    border-right-width: 1px;
    border-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
