
@import url(https://fonts.googleapis.com/css?family=Roboto:500);

/* $google-blue: #4285f4;
$button-active-blue: #3367d6; */

.google-button {
  all: unset;

  margin: auto;
  width: 100%;
  height: 52px;
  background-color: #4285f4;
  border-radius: 2px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  transition: all 300ms ease-in-out;
  display: flex;
  justify-content: space-between;

  .google-icon-wrapper {
    margin: 1px;
    width: 50px;
    height: 50px;
    border-radius: 1px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .google-button-text {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.2px;
    font-family: "Roboto";
    margin-top: 1em;
  }

  &:hover {
    box-shadow: 0 0 3px 3px rgba(66, 133, 244, 0.3);
    cursor: pointer;
  }
  &:active {
    background: #3367d6;
  }
}

.hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: black;
  text-align: center;
  height: 1.5em;
  opacity: .5;
  &:before {
    content: '';
    background: linear-gradient(to right, transparent, #818078, transparent);
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
  }
  &:after {
    content: attr(data-content);
    position: relative;
    display: inline-block;
    color: black;
    padding: 0 .5em;
    line-height: 1.5em;
    color: #818078;
    background-color: #fcfcfa;
  }
}