html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevents scrollbars during loading */
}

body {
    background-color: #00269A;
    font-family: "Montserrat", sans-serif;
    font-size: 70px; /* Ensure units are correct */
    color: white;
    background-image: url("images/wallets_background.jpg");
    background-position: center center; /* Centers the image both horizontally and vertically */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-attachment: fixed; /* Makes the background image stay in place */
    background-size: cover; /* Scales the image to cover the entire viewport */
    min-height: 100vh; /* Ensures body takes full viewport height */
    width: 100vw; /* Ensures body takes full viewport width */
}

.center {
    width: 350px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    /* border: 3px solid white; */
    /* border-radius: 20px; */
}

.loading {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    width: 50px;
    transform: translate(-50%, -50%);
}
.gm-style-iw button:focus {
    outline: 0 !important;
}