h1 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 38px;
    font-weight: 600;
    line-height: 44px;
}

strong {
    font-weight: 400;
}

.utility-page-wrap {
    justify-content: center;
    align-items: flex-start;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    display: flex;
}

.utility-page-content {
    text-align: center;
    flex-direction: column;
    display: flex;
}

.utility-page-form {
    flex-direction: column;
    align-items: stretch;
    display: flex;
}

.password-lottie {
    max-width: 40vw;
    margin-left: auto;
    margin-right: auto;
}

.maintenance-page {
    text-align: center;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    font-family: Outfit, sans-serif;
    font-weight: 200;
    display: flex;
}

.body-maintenance {
    background-color: #000;
}

.soon-text {
    color: #020401;
    margin-top: 0;
    font-family: Syne, sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 70px;
}

.tag {
    color: #020401;
    background-color: #FA75EC;
    border: 1.4px solid #fff3;
    border-radius: 40px;
    margin-bottom: 0;
    padding: 7px 15px;
    font-family: Poppins, sans-serif;
    font-weight: 500;
}

.logo {
    vertical-align: middle;
    width: 250px;
}

.navbar-separator {
    background-image: linear-gradient(186deg, #0000 5%, #fff9 50%, #0000 95%);
    flex-flow: column;
    place-content: flex-end center;
    align-items: center;
    height: 1px;
    position: absolute;
    inset: auto 0% 0%;
}

.brand {
    padding-left: 0;
}

.navbar {
    z-index: 9999;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    background-color: #ffffffcf;
    border-bottom: 1px solid #02040126;
    flex-flow: row-reverse wrap;
    justify-content: center;
    align-items: center;
    padding: 25px 24px;
    transition: all .3s;
    display: flex;
    position: fixed;
    inset: 0% 0% auto;
}

.footer {
    background-color: #FA75EC;
    padding: 140px 100px;
}

.footer-text {
    color: #020401;
    font-weight: 500;
    text-align: center;
    font-family: Poppins, sans-serif;
}

@media screen and (max-width: 991px) {
    .maintenance-page {
        padding-left: 70px;
        padding-right: 70px;
    }

    .soon-text {
        font-size: 50px;
        line-height: 60px;
    }

    .navbar {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 767px) {
    .soon-text {
        font-size: 45px;
        line-height: 50px;
    }
}

@media screen and (max-width: 479px) {
    .maintenance-page {
        justify-content: center;
        align-items: flex-start;
        padding-left: 30px;
        padding-right: 30px;
    }

    .soon-text {
        text-align: left;
        margin-top: 15px;
        font-size: 30px;
        line-height: 30px;
    }

    .tag {
        text-align: center;
    }

    .logo {
        width: 200px;
    }

    .brand {
        margin-right: 10px;
    }

    .navbar {
        padding-left: 10px;
        padding-right: 10px;
    }

    .footer {
        text-align: left;
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer-text {
        text-align: left;
    }
}

