*, *:before, *:after {
                        -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
                    }
body {
        margin: 0;
        background-color:#3f51b5;
      }
.columnsContainer {
                    position: relative; margin: .5em;
                  }
.leftColumn {
              border: 1px solid  #ccc; padding: 1.25em; margin-bottom: .5em;
            }
.rightColumn {
                border: 1px solid  #ccc; padding: 1.25em;
              }
@media screen and (min-width: 47.5em ) {
.leftColumn {
              margin-right: 19.5em;
            }
.rightColumn {
                position: absolute; top: 0; right: 0; width: 18.75em;
            }
}

h1, input::-webkit-input-placeholder, button {
  font-family: 'roboto', sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
}

h1 {
  height: 50px;
  width: 100%;
  font-size: 20px;
  background: #18aa8d;
  color: white;
  line-height: 150%;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.2);
  text-align: center;
}

form {
  box-sizing: border-box;
  width: 260px;
  margin: 20px auto 0;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
  padding-bottom: 40px;
  border-radius: 3px;
  background: white;
}
form h1 {
  box-sizing: border-box;
  padding: 7px;
}

input {
  margin: 40px 25px;
  width: 200px;
  height: 40px;
  display: block;
  border: none;
  padding: 10px 0;
  border-bottom: solid 1px #1abc9c;
  -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
          transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 96%, #1abc9c 4%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #1abc9c 4%);
  background-position: -200px 0;
  background-size: 200px 100%;
  background-repeat: no-repeat;
  color: #0e6252;
}
input:focus, input:valid {
  box-shadow: none;
  outline: none;
  background-position: 0 0;
}
input:focus::-webkit-input-placeholder, input:valid::-webkit-input-placeholder {
  color: #1abc9c;
  font-size: 11px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  visibility: visible !important;
}

#button {
  border: none;
  background: #1abc9c;
  cursor: pointer;
  border-radius: 3px;
  padding: 6px;
  width: 200px;
  color: white;
  margin-left: 25px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}
button:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.2);
}
