#google-signin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  height: 40px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  background-color: #fff;
  color: #3c4043;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  transition:
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

#google-signin-btn img {
  width: 18px;
  height: 18px;
}

#google-signin-btn:hover {
  box-shadow:
    0 1px 2px rgba(60, 64, 67, 0.3),
    0 1px 3px rgba(60, 64, 67, 0.15);
}

#google-signin-btn:active {
  background-color: #f1f3f4;
  box-shadow: none;
}
