.register-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .register-box {
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
  }

  .register-box h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #ffff;
  }

  .button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .button-group a {
    text-decoration: none;
    padding: 14px;
    font-size: 20px;
    border-radius: 5px;
    color: black;
    transition: background-color 0.3s ease;
  }

  .yes-btn {
    background-color: #a3a3a3;
  }

  .yes-btn:hover {
    background-color: #218838;
  }

  .no-btn {
    background-color: #a3a3a3;
  }

  .no-btn:hover {
    background-color: red;
    color: #ffff;
  }

  /* Responsive for tablets and up */
  @media (min-width: 600px) {
    .button-group {
      flex-direction: row;
      justify-content: center;
    }

    .button-group a {
      flex: 1;
      margin: 0 5px;
    }
  }