body {
    text-align: center;
    background-image: url('../images/icona_main_overlay.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*GUEST LOGIN CSS*/

.guest_login {
    width: 50%;
    height: 500px;
    margin: 150px auto 20px auto;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 2px 8px 0 rgba(0, 0, 0, 0.19); 
    background: #fff; 
    z-index: 4999;
}

.guest_login_left {
    background: #1b0344;
    width: 50%;
    height: 100%;
}

.guest_login_right {
    width: 50%; 
}

.guest_login_right input[type=text], .guest_login_right input[type=password] {
    width: 300px;
    height: 40px;
    margin: 0 0 10px 0;
    outline: none;
    border-radius: 5px;
    border: 1px solid rgb(182, 179, 179);
    padding-left: 5px;
    overflow: auto;
}

.guest_login_right button {
    width: 300px;
    border-radius: 5px;
}

.guest_login_right h4 {
    text-align: center;
    font-family: 'lato', sans-serif;
    margin-top: 100px;
}

.guest_login_right form {
    display: block;
    padding: 10px;
}


/*Mobile Version*/
@media only screen and (max-width: 600px) {
    .guest_login {
        width: 100%;
        margin: 60px auto;
        padding: 0 10px;
        background: transparent; 
    }
    .guest_login_left {
        width: 10%;
    }
    .guest_login_right {
        width: 78%;
        background: #fff; 
    }
    .guest_login_left {
        width: 20%;
    }
    .guest_login_right input[type=text], .guest_login_right input[type=password], .guest_login_right button {
        width: 250px;
    }
}
