body {
    background-image: linear-gradient(to right, rgb(183, 0, 255), rgb(110, 27, 99));
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .centered-box {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .button-link {
    display: inline-block;
    background-color: mediumorchid;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
  }
  
  .button-link:hover {
    background-color: darkorchid;
  }