:root {
  --form-padding:.25em 0.625em 1.75em 0.625em;
  --form-margin: 0 0 1.75em 0; /*10px*/
}
@media screen and (min-width:30em){/*480px*/
  :root {
    --form-padding:.25em 1.75em 1.75em 1.75em; /*28px */
  }
} 
.form-container {
  background-color:var(--light-grey);
  margin:var(--form-margin);
  max-width:28.625em;
  width: 100%;
}

.state {
  margin-left: 2.5em;
}

form p {
  font-weight: var(--effra-light);
  margin-top:0;
  /*padding:0 .5em;*/
  padding-bottom: 1.25em;
  text-align: left;
}


input::placeholder {
  color: var(--med-grey);
  font-size: calc(100% - .25em);
  line-height: 2em;
}


.update-btn {
  background-color:var(--orange);
  background-size: 200% auto;
  border:0;
  border-radius: 100px;
  color:var(--white);
  cursor: pointer;
  font-size:1em; 
  height: 45px;
  line-height:1.313em; /*21px*/
  max-width: 250px;
  padding:.5em 1em;
  text-align: center;
  transform: perspective(1px) translateZ(0);
  transition: 0.5s;
  /*background-image: linear-gradient(to right, #cc251c 0%, var(--orange) 51%, #cc251c 100%);*/
}
.update-btn:hover {
  background-color:#D700A0;
}
.update-btn:active {
  background-position: right center;
  background-image: linear-gradient(to right, #cc251c 0%, var(--orange) 51%, #cc251c 100%);
}