* {
  -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: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 200;
}
.login {
    position: relative;
    width: 450px;
    display: block;
    margin: auto;
    border-radius: 4px;
    margin-top: 50px;
    border: 1px solid #ff7f27;
}
.activate {
  position: relative;
  top: 25%;
  width: 450px;
  display: table;
  margin: -150px auto 0 auto;
  background: #e9e9e9;
  border-radius: 4px;
}
.legend {
    position: relative;
    width: 100%;
    display: block;
    background: #402463;
    padding: 15px;
    color: #fff;
    font-size: 20px;
}
.legend:after {
  content: "";
  background-image: url(/Content/Login/multy-user.png);
  background-size: 100px 100px;
  background-repeat: no-repeat;
  background-position: 90% -16px;
  opacity: 0.3;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
}

.legendactivate {
  position: relative;
  width: 100%;
  display: block;
  background: #f28623;
  padding: 15px;
  color: #fff;
  font-size: 20px;
}
.legendactivate:after {
  content: "";
  background-image: url(/Content/Login/multy-user.png);
  background-size: 100px 100px;
  background-repeat: no-repeat;
  background-position: 90% -16px;
  opacity: 0.3;
  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 #ff7f27;
        border-radius: 4px;
        transition: 0.2s ease-out;
        color: #a1a1a1;
    }
    .input input:focus {
        padding: 10px 5px 10px 40px;
        outline: 0;
        border-color: #e24d25;
    }
.input textarea {
  width: 100%;
  padding: 10px 5px 10px 5px;
  display: block;
  border: 1px solid #f28623;
  border-radius: 4px;
  transition: 0.2s ease-out;
  color: #a55c5c;
  height: 100px;
}
.input textarea:focus {
  padding: 10px 5px 10px 10px;
  outline: 0;
  border-color: #e24d25;
}
.submit {
    width: 70px;
    height: 70px;
    display: block;
    margin: 0 auto -15px auto;
    background: #fff;
    border-radius: 100%;
    border: 1px solid #ff7f27;
    color: #ff7f27;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 0px 0px 7px #fff;
    transition: 0.2s ease-out;
}
    .submit:hover,
    .submit:focus {
        background: #ff7f27;
        color: #fff;
        outline: 0;
    }

.submitactivate {
  width: 70px;
  height: 70px;
  display: block;
  margin: 0 auto -15px auto;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #f28623;
  color: #f28623;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0px 0px 0px 7px #fff;
  transition: 0.2s ease-out;
}
.submitactivate:hover,
.submitactivate:focus {
  background: #f28623;
  color: #fff;
  outline: 0;
}
.feedback {
  position: absolute;
  bottom: -70px;
  width: 100%;
  text-align: center;
  color: #fff;
  background: #cc1c09;
  padding: 10px 0;
  font-size: 12px;
  display: none;
  opacity: 0;
}
.feedback: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: #cc1c09;
  border-width: 10px;
  margin-left: -10px;
}

.glowed{
    box-shadow: 0px 0px 30px 2px #e24d25
  }