@-webkit-keyframes ajax-spinner {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg); } }

@keyframes ajax-spinner {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg); }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg); } }

.user-form-card {
  max-width: 600px; }
  .user-form-card .form-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch; }
    .user-form-card .form-item label {
      font-size: 18px;
      font-weight: bold; }
  .user-form-card input[type='submit'] {
    font-size: 16px;
    margin-top: 15px;
    padding: 8px 20px;
    border: 0;
    border-radius: 5px;
    background-color: #3E996C;
    color: #FFF;
    text-transform: uppercase; }
  .user-form-card input[type='text'],
  .user-form-card input[type='password'],
  .user-form-card input[type='email'] {
    height: 40px;
    font-size: 16px;
    padding-left: 8px; }
  .user-form-card .register-link {
    font-size: 16px;
    line-height: 18px;
    border-radius: 5px;
    padding: 8px 20px;
    margin-top: 15px;
    border: 0; }
  .user-form-card .register-title {
    font-size: 30px; }
  .user-form-card .form-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }

.user-register-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .user-register-form .register-title {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 20px; }
