@import url(https://fonts.googleapis.com/css?family=Roboto:500);

.google-btn {
  width: 100%;
  max-width: 300px;
  height: 42px;
  background-color: #4285f4;
  border-radius: 2px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.25);

  transition: 300ms ease-in-out;

  position: relative;

  margin-top: 16px;

  display: flex;
  align-items: center;

  border: none;
  padding: 0;
}

.google-icon-wrapper {
  position: absolute;
  margin-left: 1px;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background-color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.google-icon {
  position: absolute;
  width: 18px;
  height: 18px;
}

.btn-text {
  float: right;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2px;
  font-family: "Roboto";

  margin-left: 45px;
  width: calc(100% - 40px);
  text-align: center;
}

.google-btn:hover {
  box-shadow: 0 0 6px #4285f4;
  cursor: pointer;
}
.google-btn:active {
  background: #1669f2;
}
.google-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
