/* CUSTOM CSS */

.email-signature-generator #output {
  min-height: 40px; 
  border: 1px solid #d8e2e2; 
  margin: 70px 0 0; 
  padding: 35px 15px 20px 15px;
}

.email-signature-generator .copied {
  animation: flash 3s 1;
}

.email-signature-generator input[type="submit"] {
  float: right;
}


@keyframes flash {
  0% {
  background: #fffd9a;
}
  100% {
  background: transparent;
}
}
