

    /* CSS for purple background and aligning labels and inputs */
    body {
      font-family: Lato, sans-serif;
      padding: 20px;
      background-color: #7f56d9; /* Purple background */
      color: white; /* White text color for contrast */
    }

    .form-group {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .form-group label {
      margin-right: 10px; /* Space between label and input */
      width: 100px; /* Fixed width for labels */
    }

    .form-group input {
      padding: 8px;
      font-size: 16px;
      width: 200px; /* Fixed width for inputs */
    }


.mobile-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #28a745;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.mobile-button:hover {
    background-color: yellow;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #218838;
}


