body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    color: #333;
}

.button {
    display: inline-block;
    width: 90%;
    padding: 20px;
    margin: 10px 0; /* Adjusted margin for better spacing */
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 8px;
    background-color: #2F98A7; /* Green color */
    color: #fff;
    border: 5px solid #2F98A7;
    transition: background-color 0.3s;
    box-sizing: border-box; /* Ensures padding is included in the width */
}

.button:hover {
    background-color: #1D6C78; /* Darker green color on hover */
}
