body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #1b264f;
    background-image: url("/media/0nnp1kxs/umbraco-patterns_blue_full.webp");
    background-size: cover;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.login-card {
    background: #fff0ea;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.login-card h1 {
    color: #283a97;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
}

.login-card p {
    color: #283a97;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 14px;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #283a97;
    border: 1px solid #dadce0;
    border-radius: 50px;
    height: 40px;
    width: 100%;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s, box-shadow 0.2s;
    padding: 0 12px;
}

.btn-google:hover {
    background-color: #f7fafe;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
    border-color: #d2e3fc;
}

.btn-google:active {
    background-color: #e8f0fe;
}

.google-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
}

.divider {
    margin: 20px 0;
    border-top: 1px solid #eee;
}

@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
        margin: 0 15px; /* Give it a small margin off the screen edges */
        width: calc(100% - 30px);
    }
}