
  main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
  }

  p {
    color: #ccc;
  }

  .social-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8em;
    z-index: 1;
    position: relative;
  }

  .social-login button {
    width: 20em;
    height: 45px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
  }

  #googleLogin {
    background-color: #fff;
    color: #111;
  }
  #googleLogin:hover {
    box-shadow: 0 0 15px rgba(255,255,255,0.8);
    transform: scale(1.05);
  }

  #twitterLogin {
    background-color: #000;
    color: #fff;
    border: 1px solid rgb(255, 255, 255);
  }
  #twitterLogin:hover {
    box-shadow: 0 0 15px rgba(255,255,255,0.8);
    transform: scale(1.05);
  }

  #authMsg {
    color: #f66;
    margin-top: 1.5em;
  }

