body {
    background: var(--gradient-dashboard);
    background-attachment: fixed;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.flex-div {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.name-content {
    margin-right: 20rem;
}

.auth-detail {
    color: #727272;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.04px;
}

@media (max-width: 370px) {
    .name-content {
        margin: 0;
        text-align: center;
        padding-bottom: 14px;
    }

    .flex-div {
        display: flex;
        flex-direction: column;
    }
    .auth-form-body {
        width: 200px !important;
        height: unset;
    }
}

@media (min-width: 371px) and (max-width: 490px) {
    .name-content {
        margin: 0;
        text-align: center;
        padding-bottom: 14px;
    }

    .flex-div {
        display: flex;
        flex-direction: column;
    }
    .auth-form-body {
        width: 350px !important;
        height: unset;
    }
}

@media (min-width: 491px) and (max-width: 560px) {
    .name-content {
        margin: 0;
        text-align: center;
        padding-bottom: 14px;
    }

    .flex-div {
        display: flex;
        flex-direction: column;
    }
    .auth-form-body {
        width: 450px !important;
        height: unset;
    }
}

@media (min-width: 561px) and (max-width: 768px) {
    .name-content {
        margin: 0;
        text-align: center;
        padding-bottom: 14px;
    }

    .flex-div {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .name-content {
        margin: 0;
        text-align: center;
        padding-bottom: 14px;
    }

    .flex-div {
        display: flex;
        flex-direction: column;
    }

    @media (orientation: landscape) and (max-height: 500px) {
        .header {
            height: 90vmax;
        }
    }
}
