@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Rubik");
@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css");
.nopadding {
    padding: 0;
}
.fieldset {
  border: none;
  background: linear-gradient(20deg, #1f282e 18%, #1c252c 18%, #1c252c 68%, #1f282e 68%, #1f282e 100%);
}

.shadow {
  box-shadow: 15px 10px 0px 0px #171e24;
}

.mail-form p {
    font-family: "Rubik";
    padding-bottom: 70px;
    line-height: 2;
    color: white;
    font-size: 1.125em;
}

.mail-form {
  padding: 70px 10%;
  position: relative;
}

#emailbox {
  height: 50px;
  background-color: transparent;
  box-shadow: none;
  border: solid 2px transparent;
  border-image: linear-gradient(45deg, #fc4a5f, #ee267e, #fc4a5f);
  border-image-slice: 1;
  color: #dee0e1;
}
.email .fa-envelope-o {
    position: absolute;
    margin: 15px 10px 5px 30px;
    color: #5a6770;
    font-size: 1.125rem;
    transition: 450ms ease-in-out;
  }
  .email .fa-envelope-o:hover {
    color: white;
  }
  
  .email input {
    padding-left: 20%;
  }


.submit-button {
  text-align: center;
  color: white;
  width: 100%;
  height: 50px;
  font-size: 1.125em;
  background-image: linear-gradient(45deg, #fc4a5f, #ee267e, #fc4a5f);
}
.submit-button:hover {
  border: solid 2px;
  border-image: linear-gradient(45deg, #fc4a5f, #ee267e, #fc4a5f);
  background-image: none;
  box-shadow: none;
  border-image-slice: 1;
  cursor: pointer;
}

.submit-button span {
  display: inline-block;
  position: relative;
}

.submit-button span:after {
  text-align: center;
  content: "»";
  position: relative;
  opacity: 0;
  right: 100px;
  transition: 450ms ease-in-out;
  font-size: 20px;
}

.submit-button:hover span {
  padding-right: 15px;
  transition: 450ms ease-in-out;
}

.submit-button:hover span:after {
  opacity: 6;
  right: 0;
  margin-left: 15px;
}

#close-button {
  color: #484848;
}
#close-button:hover {
  color: #dee0e1;
  transition: 450ms ease-in-out;
}