section.Box{
    width: 100%;
    height: 100vh;

    display: flex;
    
    flex-flow: column;

    justify-content: center;
    align-items: center;
    position: relative;
}

section.Box::before{
    content: '';
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/images/admin/login.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    filter: blur(1px) brightness(.8);
}

form.Form{
    width: 30%;
    height: auto;

    padding: 20px;

    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    border-radius: 15px 15px 15px 15px;
    -moz-border-radius: 15px 15px 15px 15px;
    -webkit-border-radius: 15px 15px 15px 15px;

    -webkit-box-shadow: -2px 10px 16px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: -2px 10px 16px -3px rgba(0,0,0,0.75);
    box-shadow: -2px 10px 16px -3px rgba(0,0,0,0.75);

    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
}


form.Form img{
    width: 100px;
    height: 100px;

    margin-bottom: 20px;
}

form.Form .input-control{
    width: 80%;
}