html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  /* Match FuzzyAuth: Standard White Background */
  background-color: #ffffff;
  color: #212529;
}

/* Custom Auth Buttons (Ported from FuzzyAuth) */
.google-btn {
    background-color: #ffffff;
    color: #1f1f1f;
    border: 1px solid #747775;
    border-radius: 4px;
    transition: background-color .2s, box-shadow .2s;
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.google-btn:hover {
    background-color: #f8fcfd;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    color: #1f1f1f;
    border-color: #747775;
}

.google-icon {
    height: 24px;
    width: 24px;
    margin-right: 12px;
}

.itch-btn {
    background-color: #fa5c5c;
    color: #ffffff;
    border: 1px solid #fa5c5c;
    border-radius: 4px;
    transition: background-color .2s, box-shadow .2s;
    font-family: 'Roboto', arial, sans-serif;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.itch-btn:hover {
    background-color: #d94545;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    color: #ffffff;
    border-color: #d94545;
}