.reactive-background {
    display: grid;
    grid-template-areas:
        "header header header"
        ". body .";
    min-height: 100vh;
    max-width: 100vw;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    z-index: 100;
}

.reactive-background .header {
    display: grid;
    grid-area: header;
    background-color: white;
    justify-self: start;
    grid-template-columns: 100vw;
}

.reactive-background .header svg,
.reactive-background .header img {
    padding: 5px 25px;
    height: 24px;
}

.reactive-background .body {
    grid-area: body;
    margin: 0px auto 0px;
    max-width: 600px;
    min-width: 480px;
}

.reactive-background .background {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: -1;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}

.reactive-background .background.hidden {
    height: 0px;
}

.reactive-background .body-content {
    display: grid;
    margin: 30px 20px;
    padding: 15px 20px;
    background-color: white;
    border-radius: 10px;
    background-color: white;
    justify-self: center;
}
.reactive-background .view-flat .view-content .view-content-body .view-content-content .form .MuiFormControl-root .MuiFormLabel-root[data-shrink="true"],
.reactive-background .view-flat .view-content .view-content-body .view-content-content .form .MuiFormLabel-root.Mui-error,
.reactive-background .view-flat .view-content .view-content-body .view-content-content .form .MuiInputBase-root .MuiInputBase-input {
    height: 20px;
}
.reactive-background .view-flat .view-content .view-content-body .view-content-content .form .MuiFormLabel-root,
.reactive-background .view-flat .view-content .view-content-body .view-content-content .form .MuiInputBase-root .MuiInputBase-input {
    line-height: 20px;
}
.reactive-background .view-flat .view-content .view-content-body .view-content-content .form .css-14s5rfu-MuiFormLabel-root-MuiInputLabel-root {
    top:-4px;
    position:absolute;
}
.view-dialog .view-content .view-content-body .view-content-content .form .eligibility-input .MuiFormControl-root .MuiFormLabel-root {
    top:-4px;
    position:absolute;
    line-height: 20px;
}

@media only screen and (max-width: 480px) {
    .reactive-background {
        overflow: hidden;
    }
    .reactive-background .background {
        display: grid;
    }

    .reactive-background {
        grid-template-areas:
            "header"
            "body";
        grid-template-columns: 100vw;
    }

    .reactive-background .body {
        display: grid;
        grid-area: body;
        grid-template:
            "image"
            "content";
        grid-template-rows: auto 1fr;
        position: static;
        max-width: 100vw;
        margin-top: 0px;
        padding: 0px;
        min-width: 0px;
    }

    .reactive-background .body-content {
        border-radius: 0px;
        justify-self: start;
        padding: 25px 30px;
    }

    .reactive-background .background {
        position: static;
        height: 250px;
        background-repeat: no-repeat;
    }
}
