/**
 * @file
 * Form elements buttons.
 */
/**
 * @file
 * Form elements buttons partial.
 */
input[type=submit],
input[type=button],
input[type=reset],
input[type=file],
a.sso-button,
button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 1px solid #EC0928;
  cursor: pointer;
  transition: all 400ms ease;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  background-color: #EC0928;
}
@media (min-width: 767px) {
  input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=file]:hover,
a.sso-button:hover,
button:hover,
.button:hover, input[type=submit]:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=file]:focus,
a.sso-button:focus,
button:focus,
.button:focus, input[type=submit]:active,
input[type=button]:active,
input[type=reset]:active,
input[type=file]:active,
a.sso-button:active,
button:active,
.button:active {
    color: #EC0928;
    background-color: #fff;
    outline: 0 !important;
  }
}

@layer drupal {
  input[type=submit],
input[type=button],
input[type=reset],
input[type=file],
a.sso-button,
button,
.button {
    -webkit-appearance: none;
    max-width: 100%;
  }
  .form-actions {
    margin-bottom: 2.25em;
  }
}

/*# sourceMappingURL=buttons-form-elements.css.map */
