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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Google-branded sign-in control (multicolor G + label) */
.google-sign-in-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px 10px 16px;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 4px;
  color: #3c4043;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s, box-shadow 0.2s;
}

.google-sign-in-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  color: #3c4043;
}

.google-sign-in-btn:focus-visible {
  outline: 2px solid #4285f4;
  outline-offset: 2px;
}

.google-sign-in-btn__icon {
  display: flex;
  flex-shrink: 0;
}

.google-sign-in-btn__icon svg {
  display: block;
}

.google-sign-in-btn--compact {
  padding: 6px 14px 6px 10px;
  gap: 10px;
  font-size: 13px;
}

.google-sign-in-btn--compact .google-sign-in-btn__icon svg {
  width: 16px;
  height: 16px;
}