@import url('https://fonts.googleapis.com/css?family=Open+Sans');

html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #49BAF2;
}

a {
  text-decoration: none;
  background-color: #fff;
  border-radius: 100px;
  text-align: center;
  padding: 1.2rem 1.8rem;
  margin-top: 3rem;
  color: #fff;
  background-color: #49BAF2;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

.generator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 50%;
  padding: 5rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 0 10rem #fff;
  box-shadow: 0 0 10rem #fff;
  background-color: #fff;
}

h2 {
  
  text-align:center;
  font-size:22px;
  line-height:30px;
  margin-bottom:0px;
  padding-bottom:0px;
}

.top, .bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.inputfields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

input, textarea {
  padding: 1rem .5rem;
  border-radius: 5px;
  border: 1px solid #fff;
  font-size: 14px;
}

input:focus, textarea:focus {
  border: 1px solid #49BAF2;
  outline: none;
}

textarea {
  resize: none;
  margin-top:10px;/* by nancy */
}