@charset "utf-8";
label {
  color: #a2aabd;
  font-size: 1.75em;
  font-weight: 500;
  left: .5em;
  position: absolute;
  top: .25em;
  transition: all 0.1s linear;
}

input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #b5bdce;
  color: #666;
  font-size: 1.5em;
  padding: .75em .5em .5em;
  width: 100%;
}

input:focus + label,
input + label.show {
  border-radius: 4px;
  color: #2088cd;
  font-size: 1em;
  left: .5em;
  padding: 0 .15em;
  text-transform: uppercase;
  top: -1em;
}



.success{
  color: green;
  border: 2px solid green;
}

.error{
  color: red;
  border: 2px solid red;

}

.input{
  position: relative;
}











/**/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f9f9fb;
  line-height: 1.75;
}


.container {
  margin: 0 auto;
}

body,
button {
  font-family: "Open Sans", sans-serif;
}

form {
  width: 450px;
}

.field {
  margin-bottom: 1.75em;
  position: relative;
}

button {
  background: #2088cd;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 1.5em;
  padding: .75em;
  text-transform: uppercase;
  width: 100%;
}

input:focus {
  border-color: #2088cd;
  outline: 0;
}
