
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F7F7F7;
}

.errorHeader {
    display: flex;
    padding: 24px 100px;
    align-items: center;
    background-color: white;
    box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.08);
}

.logo {
    width: 157.371px;
    height: 42px;
}

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

.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto;
    gap: 20px;
    background-color: var(--primary-black);
    padding:30px 100px;
}

.footer-link a {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: var(--primary-white) !important;
    text-decoration: none !important;
}

.footer-secondary {
    font-size: 11px;
    font-weight: 400;
    font-style: normal;
    line-height: 15.2px;
    color: var(--secondary-sonic-silver) !important;
}

@media only screen and (max-width: 767px)  {
    .errorHeader {
        padding: 15px 26px;
    }
    .revamp-container {
        padding: 0 26px;
    }
    .card .card-content {
        padding: 40px 20px;
    }
    .logo {
        width: 112.408px;
        height: 30px;
    }
    .footer-wrapper {
        gap: 25px;
        padding:25px 26px;
    }
    .footer-link {
        margin: auto;
    }
}