body {
    margin: 0;
    padding: 0;
    font-family: "Quicksand", sans-serif;
    background-color: #232429;
	background-image: url(/images/rgg_bg_comp_op.jpg);
	background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .container {
    text-align: center;
  }
  
  h1 {
    margin-bottom: 20px;
  }
  
  p {
    margin-bottom: 40px;
  }
  
  .auth-button {
    background-color: white;
    color: #232429;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s ease;
  }
  
  .auth-button:hover {
    transform: scale(1.1);
  }
  
  .auth-button:active {
    transform: scale(0.9);
  }
  