.modalBackground{
    backdrop-filter: blur(0.5em);
    -webkit-backdrop-filter: blur(0.5em);
    
    width: 100vw;
    height: 100vh;
    
    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    display: none;
}

.modalBody{
    width: 40vw;

    margin-left: 30vw;
    margin-top: 2.5vh;

    box-shadow: 0em 0.5em 2em rgba(0, 0, 0, 0.4);

    border-radius: 1em;

    background-color: #FFFFFF;

    overflow-y: scroll;

    padding: 2em 0.5em;
}

.modalBody>svg{
    margin-top: -0.5em;
    margin-right: 1em;

    float: right;
    
    transform: scale(1.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modalBody>svg:hover{
    transform: scale(1.6);
}

.heading, .subheading{
    text-align: center;
    margin-bottom: 1em;
}

.subheading{
    margin-left: 2em;
    margin-right: 2em;
}

.heading>p{
    font-size: xx-large;
    font-weight: bold;
    line-height: 1.5;
}

.subheading>p{
    font-size: small;
    font-weight: 400;
    margin-bottom: 2em;
}

.input{
    outline: none;

    border-radius: 2em;
    border-width: 2px;
    border-color: rgba(124, 124, 124, 0.4);
    border-style: solid;

    width: 80%;
    height: 2.75em;

    margin-left: 10%;
    margin-top: 0.5em;
    margin-bottom: 0.5em;

    padding: 1.5em 1.5em;

    font-size: small;
}

.asterisc {
    color: #D63636;
    margin: 0em 0.25em;
}

.inputError{
    border-color: #D63636;
}

.submit{
    margin-top: 2em;
    margin-bottom: 1em;
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 768px) {
    .modalBody{
        width: 60vw;
        margin-left: 20vw;
    }
}

@media only screen and (max-width: 512px) {
    .modalBody{
        width: 80vw;
        margin-left: 10vw;
    }
}