@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400");
@import url("https://fonts.googleapis.com/css?family=Playfair+Display");


.message,
.signupform,
form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: repeating-conic-gradient(#fff7f3 0% 25%, #f0f8ff 0% 50%);
  background-position: 0 0, 13px 13px;
  background-size: 26px 26px;
  background-color: #f0f8ff;
}

.sign {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  width: 700px;
  max-width: 80%;
  height: 400px;
  background-image: repeating-conic-gradient(#fff7f3 0% 25%, #f0f8ff 0% 50%);
  background-position: 0 0, 13px 13px;
  background-size: 26px 26px;
  background-color: #f0f8ff;
  display: grid;
  grid-template: 100%/50% 50%;
  box-shadow: 2px 2px 10px 0 rgba(51, 51, 51, 0.2);
}

.sign.active{
  transform: translate(-50%, -50%) scale(1);
}


.message {
  position: absolute;
  background-color: #f2eee3;
  width: 50%;
  height: 100%;
  transition: 0.5s all ease;
  transform: translateX(100%);
  z-index: 4;
}
.message:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 70%;
  background: #c3c3d8;
  opacity: 0;
  left: 0;
  top: 15%;
}
.message .button {
  margin: 5px;
}

.close{
  padding: 5px;
  font-size: 3rem;
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.signup:before {
  opacity: 0.3;
  left: 0;
}

.login:before {
  opacity: 0.3;
  left: 100%;
}

.btn-wrapper {
  width: 60%;
}

.signupform {
  width: 100%;
  height: 100%;
}
.signupform--heading {
  font-size: 25px;
  height: 50px;
  color: #8288ff;
  font-family: "Source Sans Pro", sans-serif;
}
.signupform--signup {
  border-right: 1px solid #999;
}

form {
  width: 70%;
}
form > * {
  margin: 10px;
}
form input {
  width: 100%;
  border: 0;
  border-bottom: 3px solid #aaa;
  font-size: 23px;
  font-weight: 300;
  color: #797a9e;
  letter-spacing: 0.11em;
  background-color: transparent;
}
form input::placeholder {
  color: #333;
  font-size: 15px;
}
form input:focus {
  outline: 0;
  border-bottom: 1px solid rgba(128, 155, 206, 0.7);
  transition: 0.6s all ease;
}

.button {
  width: 100%;
  height: 40px;
  border: 0;
  outline: 0;
  color: #f2eee3;
  font-size: 25px;
  font-weight: 400;
  position: relative;
  z-index: 3;
  background: #8288ff;
  font-family: "Source Sans Pro", sans-serif;
  cursor: pointer;
  border-radius: 5px;
}

#contact .container .reach form label textarea{
  width: 200%;
  border: 0;
  border-bottom: 1px solid #aaa;
  font-size: 23px;
  font-weight: 300;
  color: #797a9e;
  letter-spacing: 0.11em;
  background-color: transparent;
}