button,
input[type="submit"] {
    cursor: pointer;
}

.logo img {
    max-width: fit-content;
}

.blink-bg {
    background: #037dc1;
    color: #fff;
    animation: blinkBg 0.4s infinite alternate;
}

@keyframes blinkBg {
    0% {
        background: #037dc1;
        color: #fff;
    }

    100% {
        background: #dadd1a;
        color: #333;
    }
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1200px !important;
}


.top-button {
    text-align: right;
}

.top-button a {
    margin-left: 10px;
    background: #1e95d5 !important;
    border-radius: 50px;
    padding: 13px 20px;
    color: #fff !important;
    font-family: "Google Sans", sans-serif;
}

.top-button a {
    font-weight: bold;
    border-radius: 7px;
    font-size: 17px;
    text-decoration: none;
}

header {
    padding: 8px 0;
}



@media (max-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}


@media (max-width: 992px) {
    header {
        padding: 12px 0;
    }

    .logo img {
        max-width: 220px !important;
        height: auto;
    }

    .top-button {
        text-align: center;
    }

    .top-button a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 6px 6px 0;
        padding: 10px 16px;
        font-size: 14px;
        line-height: 1.4;
    }

}


@media (max-width: 768px) {

    header {
        text-align: center;
    }

    .top-button a {
        width: 100%;
        max-width: 360px;
        margin: 6px auto 0;
    }

    .logo img {
        margin-inline: auto;
    }

    .top-button a {
        border-radius: 12px !important;
    }
}

@media (max-width: 576px) {
    .top-button a {
        padding: 10px 14px;
        font-size: 13px;
    }
}