/* Fix send button focus outline to be green instead of blue */
#submit:focus,
#submit:active {
  background: #5cb85c !important;
  outline: none !important;
}

/* Remove default browser outline */
#submit:focus {
  outline: none !important;
  color: #fff !important;
}

#submit:hover {
  background: #5cb85c !important;
  outline: 1px solid #5cb85c !important;
  color: #fff !important;
}
