#container {
    background-size: cover !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

#inviteContainer {
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    max-width: 50%;
}

#inviteContainer .acceptContainer {
    padding: 10px;
    box-sizing: border-box;
}

#inviteContainer .acceptContainer:before {
    content: "";
    background-size: cover !important;
    box-shadow: inset 0 0 0 3000px rgba(40, 43, 48, 0.75);
    filter: blur(10px);
    position: absolute;
    width: 150%;
    height: 150%;
    top: -50px;
    left: -50px;
}

form {
    padding-bottom: 15px;
    position: relative;
    text-align: center;
    height: 100%;
}

form h1 {
    margin: 0 0 15px 0;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
}

.logoContainer {
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 40%;
}

.logoContainer img {
    width: 150px;
    margin-bottom: -5px;
    display: block;
    position: relative;
}

.logoContainer .text {
    padding: 25px 0 10px 0;
}

.logoContainer:before {
    content: "";
    background-size: cover !important;
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150%;
    height: 150%;
    filter: blur(10px);
    box-shadow: inset 0 0 0 3000px rgba(255, 255, 255, 1);
}

.acceptBtn {
    width: 100%;
    box-sizing: border-box;
    background: #7289DA;
    border: none;
    color: #fff;
    padding: 15px 0;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    cursor: pointer;
    transition: 0.2s ease;
}

.acceptBtn:hover {
    background: #6B7FC5;
}

@media screen and (max-width: 980px) {
    form h1 {
        font-weight: 600;
        font-size: 16px;
    }

    #inviteContainer {
        max-width: 60%;
    }
}

@media screen and (max-width: 760px) {
    form h1 {
        font-weight: 600;
        font-size: 14px;
    }


    #inviteContainer {
        max-width: 70%;
    }

    .logoContainer{
        width: 50%;
        padding: 1em;
    }
}

@media screen and (max-width: 480px) {
    form h1 {
        font-weight: 600;
        font-size: 12px;
    }

    #inviteContainer {
        max-width: 100%;
    }

    .logoContainer{
        width: 50%;
        padding: 1em;
    }
}