form,input,select,textarea,button {
    font-family: avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
	display: block;
	margin: 0 0 2rem 0;
    padding: 1rem 0;
    align-items: flex-start;
    box-sizing: border-box;
}
input,select,textarea {
    color: darkslategray;
    background-color: white;
    background-clip: padding-box;
    line-height: 1.5;
    border-radius: .5rem;
    padding: 1rem 4rem;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
select {
    appearance: none;
    -moz-appearance: none; 
    -webkit-appearance: none; 
}
select:required:invalid {
	color: silver;
}
input:focus, select:focus, textarea:focus {
    border-color: royalblue;
    box-shadow: none;
    -webkit-box-shadow: none;
}
button {
    margin-bottom: 0;
    color: white;
    background-color: royalblue;
    border-color: royalblue;
    user-select: none;
    line-height: 1.5;
    border-radius: .5rem;
    border: 1px solid transparent;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
button:hover { 
	filter: brightness(80%); 
}
input:placeholder { 
	color: silver; 
}
option[value=""][disabled] {
    display: none;
    color: silver;
}
option {
    color: black;
}

.g-auth-form-container {
  @include respond-to('medium') {
    max-width: calc(55% - var(--spacing-l));
  }

  &.full-width {
    max-width: 100%;
  }

  &.loading {
    .g-auth-form__button {
      cursor: default;

      &:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        pointer-events: none;
        background: linear-gradient(
          -90deg,
          var(--gradient-first-color) 0%,
          var(--gradient-second-color) 40%,
          var(--gradient-second-color) 45%,
          var(--gradient-second-color) 55%,
          var(--gradient-first-color) 60%
        );
        background-size: 250% 250%;
        @include animation('loading 2s linear infinite');
        @include keyframes(loading) {
          0% {
            background-position: 150% 0;
          }
          100% {
            background-position: 0 0;
          }
        }
      }
    }
  }

  &.success {
    .g-auth-form-container__normal {
      display: none;
    }

    .g-auth-form-container__success {
      display: block;
    }
  }

  &.invalid,
  &.error {
    .g-auth-form-container__error {
      display: block;
    }
  }

  &:not(.success) {
    .g-auth-form-container__success {
      display: none;
    }
  }

  &:not(.error):not(.invalid) {
    .g-auth-form-container__error {
      display: none;
    }
  }
}
.g-auth-form {
  display: flex;
  width: 100%;
  height: 3.5rem;
  border-radius: var(--border-radius-m);
  overflow: hidden;
}

.g-auth-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  margin-bottom: 1.5rem;
}

.g-auth-form__label {
  color: var(--foreground);
  line-height: 1.2;
  font-size: 1rem;
}

.g-auth-form__regular-input,
.g-auth-form__input {
  color: var(--foreground);
  font-family: var(--gh-font-body, var(--font-family));
  font-size: 1rem;
  padding: var(--spacing-s);
  max-height: 3.5rem;
  border: 1px solid var(--accent-color);
  border-radius: var(--border-radius-m);
  background-color: var(--background);
}

.g-auth-form__input {
  flex: 1;
  height: 100%;
  padding: 0 var(--spacing-s);
  border-radius: var(--border-radius-m) 0 0 var(--border-radius-m);
}

.g-auth-form__button {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  padding: 0 1.625rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background-color: var(--accent-color);

}
table{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

.gh-content table:not(.gist table){
  all:unset;
}
.gh-content table:not(.gist table) td:last-child {
  background-image:none;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.8rem;
  white-space: nowrap;
}
.gh-content table:not(.gist table) td:first-child {
  all:unset;
  background-repeat: no-repeat;
  background-size: 20px 100%;
}
