body {
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.input-field {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    font-size: 16px;
}

.connect-button {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    cursor: pointer;
}

.terms {
    text-align: left;
    line-height: 1.5;
}

footer img {
    margin: 8px;
}

/* Mobile tweaks */
@media (max-width: 600px) {

    body {
        padding: 10px;
    }

    h1 img {
        width: 80px !important;
        height: 80px !important;
    }

    h2 {
        font-size: 24px;
    }

    .connect-button {
        font-size: 20px;
    }

    footer img {
        height: 40px !important;
    }
}