.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: 1px solid #dadce0;
  background: #fff;
  color: #3c4043;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 6px;
  transition: box-shadow .2s ease, transform .02s ease;
  text-decoration: none;
}
.btn-google:hover {
  color: #3c4043;
  text-decoration: none;
  box-shadow: 0 1px 6px rgba(60,64,67,.15);
}
.btn-google:active {
  transform: translateY(1px);
}
.btn-google__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  color: #9aa0a6;
  font-size: 12px;
}
.login-divider:before,
.login-divider:after {
  content: "";
  height: 1px;
  background: #e6e6e6;
  flex: 1;
}