body {
    background: #2a2a2a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-family: "Poppins", "Roboto", sans-serif;
}

.header {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.header .locader-logo {
    height: 50px;
    margin-right: 12px;
}

.header .locader-logo-text {
    font-size: 30px;
    font-weight: 400;
    color: #ff1d61;
    font-family: "Poppins", "Roboto", sans-serif;
}

.app-image {
    display: block;
    margin: auto;
    object-fit: cover;
    width: 90%;
    max-height: 100%;
    max-width: 650px;
    min-width: 300px;
}

.disabled-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    height: 50px;
    width: 150px;
    border-radius: 10px;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    color: #e3e3e3e3;
    /* font-weight: 500; */
    text-shadow: 0 0 2px #e3e3e3e3;
    transition: 0.5s;
}

.privacy-terms {
    text-align: center;
}

@media (max-width: 768px) {
    .app-image {
        max-width: 350px;
        min-width: unset;
    }
}

/* @media (min-width: 576px) {
    .privacy-terms {
        float: right;
        margin-right: 24px;
    }
} */
