.sign-in-page {
  display: flex;
  flex-direction: row;
  justify-content: center;

  button[type=submit] {
    margin: 20px 0;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    gap: 5px;
    cursor: pointer;

    &:hover {
      background-color: #fafafa;
    }

    img {
      height: 18px;
    }
  }
}