html, body, .login
{
    height: 100%;
}

body
{
    background-size: cover;
    background-position: center;
    background-image: url('../images/bg.jpg');
/*    background-image: url('*//*.jpg');*/
}

.main-container
{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
}

.box
{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 420px;
    height: 410px;
    margin: auto 180px;
    position: absolute;
}

.box .body
{
    background-color: #ececec;
    box-shadow: 0 4px 20px 0 rgba(0,0,0,0.2), 0 4px 20px 0 rgba(0,0,0,0.19);
}

.box .logo
{
    color: #5d5d5d;
    font-size: 46px;
    text-align: center;
    padding: 30px 0 20px;
    font-family: 'Bebas Neue', cursive;
}

.box form
{
    padding: 20px 30px 40px;
}

.box form input
{
    height: 52px;
}

.box form button
{
    padding: 12px 24px;
}

@media(max-width:767px)
{
    .box
    {
        width: 90%;
    }

    .body
    {
        padding: 20px 0 0;
    }
}