.social_auth_btns {
  display: flex;
  justify-content: space-around;
  /* gap: 2rem; */
  width: 100%;
  margin-top: 18px;
}

.auth_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  max-width: 200px;
  background-color: #fafafa;
  border-radius: 8px;
  transition: 0.3s ease;
  padding-left: 7px;
  padding-right: 7px;
  border: #dfe5ef;
  border-width: 1px;
}

.auth_btn--text {
  display: block;
  font-weight: bold;
  color: gray;
}

@media screen and (max-width: 385px) {
  .auth_btn--text {
    display: none;
  }
}

.auth_btn img {
  height: 70%;
  width: auto;
}

.auth_btn:hover {
  scale: 1.1;
  box-shadow: 0 6px 6px 0px rgba(0, 0, 0, 0.071);
}
