/* Google Sign-In Button Styles */
.btn-google {
  font-family: Roboto, sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 25%);
  transition:
    background-color 0.218s,
    border-color 0.218s,
    box-shadow 0.218s;
}

.btn-google:hover {
  box-shadow: 0 0 3px 3px rgb(66 133 244 / 30%);
  cursor: pointer;
}

.btn-google:active {
  background-color: #3367d6;
}

.btn-google img {
  margin-right: 8px;
  height: 18px;
  width: 18px;
}
