*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#rs {
  text-align: center;
  color: #ffffff;
  margin-right: 40px;
  margin-top: 0px;
  font-family: 'Bad Script';
}

@media (max-width:767px) {
  #rs {
    text-align: center;
    color: #ffffff;
    margin-right: 40px;
    margin-top: 0px;
    font-family: 'Bad Script';
    font-size: 27px;
  }
}

form {
  max-width: 99%;
  text-align: center;
  margin: auto;
  height: 375px;
}

@media (max-width:767px) {
  form {
    max-width: 100%;
    text-align: center;
    margin: auto;
    padding-right: 1px;
    padding-left: 1px;
    height: 375px;
  }
}

form input, form textarea {
  border: 0;
  outline: 0;
  padding: 1em;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  display: block;
  width: 100%;
  color: #ffffff;
  margin-top: 1em;
  font-family: 'Alegreya Sans';
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  resize: none;
  background: rgba(71,73,75,0.85);
  /*opacity: 1;*/
  resize: vertical;
}

form input:focus, form textarea:focus {
  -moz-box-shadow: 0 0px 5px #1485ee !important;
  -webkit-box-shadow: 0 0px 5px #1485ee !important;
  box-shadow: 0 0px 5px #1485ee !important;
}

form #input-submit {
  color: white;
  background: rgba(179,2,2,0.85098);
  cursor: pointer;
  width: 315px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 15px;
}

form #input-submit:hover {
  -moz-box-shadow: 0 1px 1px 1px #1485ee;
  -webkit-box-shadow: 0 1px 1px 1px #1485ee;
  box-shadow: 0 1px 1px 1px #1485ee;
}

.half {
  float: left;
  width: 40%;
  margin-bottom: 1em;
}

.right {
  width: 55%;
}

.left {
  margin-right: 2%;
}

@media (max-width: 480px) {
  .half {
    width: 100%;
    float: none;
    margin-bottom: 0;
    margin: auto;
  }
}

.cf:before, .cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

