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 #f29c42;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

body {
  background: #f6f7fb;
}

.card {
  border-radius: 16px;
}

.btn {
  border-radius: 10px;
}

.form-control {
  border-radius: 12px;
}

.btn-google {
  background-color: #ffffff;
  color: #444;
  border: 1px solid #ddd;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  transition: all 0.2s ease;
}

.btn-google:hover {
  background-color: #f7f7f7;
  border-color: #ccc;
}

.btn-google img {
  width: 20px;
  height: 20px;
}