.container-post-login{
    height: 100vh;
    width: 100%;

    background: rgb(0,0,0,.5) url(img/wallpaper-index.jpeg) no-repeat center;
    background-size: cover;
    background-blend-mode: darken;

    display: flex;
    align-items: center;
    justify-content: center;
}

.container-main-login{
    height: 500px;
    width: 500px;

    position: relative;
}

.container-login-form{
    height: 100%;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background: #ffffff;
    position: absolute;
    z-index: 2;

    border-radius: 150px 0px;
}

.container-login-base{
    height: 100%;
    width: 100%;

    background-image: linear-gradient(to bottom right,#4f8f3a,#49739b);
    position: absolute;
    z-index: 1;

    border-radius: 20px 0px;
}

.img-login-logo{
    height: 80px;
    width: 227.33px;
}


@media (width <= 500px) {
    .container-main-login{
        height: 100%;
        width: 100%;
    }
    .container-login-base{
        border-radius: 0px;
    }
}

@media (height <= 500px) {
    .container-main-login{
        height: 100%;
        width: 100%;
    }
    .container-login-base{
        border-radius: 0px;
    }
}

@media (height <= 380px) {
    .container-login-form{
        padding: 20px 0px 0px;
        display: block;
        text-align: center;
        overflow-y: auto;

        border-radius: 100px 0px;
    }   
}