* {
  box-sizing: initial;
}
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #eee;
}
form {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 706px;
  transform: translate(-50%, -50%);
  max-width: 100%;
  box-shadow: 0 3px 7px rgba(0,0,0,0.2);
  background-color: #fff;
  border-radius: 5px;
}
#title {
  color: #fff;
  text-align: center;
  margin: -15px -15px 15px;
  background-color: #34495e;
  padding: 18px 15px;
}
input {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  height: 40px;
  font-size: 14px;
  margin-bottom: 20px;
  padding: 5px 13px;
  border-radius: 5px;
  border: 1px solid #DCDCDC;
  width: 303px;
}
#button, button {
  display: inline-block;
  width: 100%;
  width: 303px;
  box-sizing: border-box;
  height: 40px;
  font-size: 14px;
  padding: 5px 13px;
  margin-top: 10px;
  background-color: #81D0D3;
  color: #fff;
  transition: .3s;
  border: 0;
  border-radius: 5px;
}
#button:hover, button:hover {
  cursor: pointer;
  background-color: #4c75b7;
}
#button.white {
  background-color: white;
  border: 1px solid;
  color: #7C7C7C;
  margin-top: 0;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
}

.alert {
  text-align: center;
}
#left {
  z-index: 100;
  padding: 25px;
  float: left;
  display: inline-block;
  position: relative;
  width: 303px;
  border-right: 1px solid #ECF0F1;
}

#right {
  position: absolute;
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
}

#right img {
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}
p {
  color: #7C7C7C;
  margin: 5px 0;
  font-weight: 600;
  font-size: 13.5px;
}
hr {
  border-color: #ECF0F1;
  margin: 30px 0;
}

@media screen and (max-width: 710px) {
  form {
    position: relative;
    float: left;
    width: 353px;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    top: 40px;
    transform: translateX(-50%);
    margin-bottom: 40px;
  }
  #right {
    position: relative;
    display: inline-block;
    width: 303px;
    height: 154px;
    left: initial;
    right: initial;
    bottom: initial;
    top: initial;
    margin-top: 40px;
  }
  #left {
    padding-top: 10px;
    text-align: left;
  }
  #right img {
    width: 200px;
    max-width: none;
  }
}