@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');

header{
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .8)), 
    url(../medias/images/homebackgroung.jpg) fixed center no-repeat;
}

/* Avatar */

/*.avatar {
    max-width: 128px;
    max-height: 128px;
    border-radius: 100%;
}

.avatar-medium {
    max-width: 64px;
    max-height: 64px;
}
*/
.avatar-mini {
    max-width: 24px;
    max-height: 24px;
}

/* Login page */
section{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

section .imgBx
{
    position: relative;
    width: 50%;
    height: 100vh;
}

section .imgBx::before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg,#e91e63,#03a9f4);
    z-index: 1;
    mix-blend-mode: screen;
}

section .imgBx img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section .contentBx
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}

section .contentBx .formBx
{
    width: 50%;
}

section .contentBx .formBx p
{
    width: 100%;
    color: #607d8b;
    text-align: center;
    border: 1px solid #607d8b;
}

section .contentBx .formBx h2
{
    width: 100%;
    color: #607d8b;
    font-weight: 600;
    font-size: 1.5em;
    /*text-transform: uppercase;*/
    margin-bottom: 25px;
    /*border-bottom: 4px solid #ff4584;*/
    display: inline-block;
    letter-spacing: 1px;
    text-align: center;
}

section .contentBx .formBx .inputBx
{
    margin-bottom: 20px;
}

section .contentBx .formBx .inputBx span
{
    font-size: 16px;
    margin-bottom: 5px;
    display: inline-block;
    color: #607d8b;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 1px;
}

section .contentBx .formBx .inputBx input
{
    width: 100%;
    padding: 10px 20px;
    outline: none;
    font-weight: 400;
    border: 1px solid #607d8b;
    font-size: 16px;
    letter-spacing: 1px;
    color: #607d8b;
    background: transparent;
    border-radius: 30px;
}

section .contentBx .formBx .inputBx input[type="submit"]
{
    background: #ff4584;
    color: #fff;
    outline: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

section .contentBx .formBx .inputBx input[type="submit"]:hover
{
    background: #f53677;
}

section .contentBx .formBx .remember
{
    margin-bottom: 10px;
    color: #607d8b;
    font-weight: 400;
    font-size: 14px;
}

@media (max-width: 768px)
{
    section .imgBx
    {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    section .contentBx
    {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    section .contentBx .formBx
    {
        width: 100%;
        padding: 40px;
        background: rgba(255 255 255 / 0.9);
        margin: 50px;
    }

}
