body { font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background: #f0f2f5; }
.login-container { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); text-align: center; }
.btn { display: block; padding: 10px 20px; margin: 10px; text-decoration: none; border-radius: 5px; color: white; }
.google { background: #db4437; }
.discord { background: #7289da; }



.login-with-google {
  width: 300px;
  margin: auto;
  display: table;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
  padding: 12px 16px 12px 16px;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
  color: #757575;
  font-size: 16px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background-color: white;
  vertical-align: middle;
  text-align: center;

  &:hover {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25);
  }

  &:active {
    background-color: #eeeeee;
  }

  &:focus {
    outline: none;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25),
      0 0 0 3px #c8dafc;
  }
}
.login-with-google img {
  margin-right: 6px;
  position: relative;
    top: 3px;
  
}

.login-with-discord {
  width: 300px;
  margin: auto;
  display: table;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
  padding: 12px 16px 12px 16px;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
  color: #FFFF;
  font-size: 16px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background-color: #7289da;
  vertical-align: middle;
  text-align: center;

  &:hover {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25);
  }

  &:active {
    background-color: #eeeeee;
  }

  &:focus {
    outline: none;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25),
      0 0 0 3px #c8dafc;
  }
}
.login-with-discord img {
  margin-right: 6px;
  position: relative;
    top: 3px;
    width: 18px;
    height: 18px ;
  
}
/* End Google*/
