body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('landingbg.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    background-color: black;
  }
.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 20px;
    box-sizing: border-box;
  }
.button {
    background-color: #2b41a1;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 5px;
    width: 50%;
  }
.button:hover {
    background-color: rgb(81, 84, 228);
  }
  .buttonDisabled {
    background-color: #555;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 5px;
    width: 50%;
  }

  