body {
	margin: 0;
	background: #ddd;
}

@media (min-width: 1900px) {
    body {
        background-size: 1922px auto;
    }
}

.login-box {
	width: 430px;
	height: 225px;
	background: #fff;
	border-radius: 4px;
	position: absolute;
	top: calc(50% - 112px);
	left: calc(50% - 200px);
    box-shadow: 0px 1px 5px #ccc;
}

.login-box .client-logo {
	float: left;
	height: 225px;
	width: 170px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
	background: #4A9B3B url("../_img/logo/casanova.png") no-repeat center center;
    background-size: 120px auto; 
}
.login-box .client-logo .side-border {
	position: absolute;
	height: 185px;
	width: 0px;
	background: #ddd;
	left: 170px;
	margin-top: 20px;
}

.login-box .client-info {
	float: left;
	height: 225px;
	width: 100px;
}
.login-box .client-info .label:first-child {
	margin: 20px 30px 0px 30px;
}
.login-box .client-info .label {
	height: 25px;
    width: 150px;
	margin: 10px 30px 0px 30px;
	font: 11pt NunitoBold;
	color: #333;
}
.login-box .client-info input[type="text"] {
	width: 180px;
    background: #fff;
    font: 11pt NunitoExtraBold;
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    outline: none;
	margin: 0px 30px;
}
.login-box .client-info input[type="password"] {
	width: 180px;
    background: #fff;
    font: 11pt NunitoExtraBold;
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    outline: none;
	margin: 0px 30px;
}
.login-box .client-info button {
    margin: 20px 0 0 128px;
    height: 30px;
    background: #4A9B3B ;
    border: 1px solid #4A9B3B ;
    border-radius: 3px;
    font: 11pt NunitoSemiBold;
    text-decoration: none;
    color: #fff;
    text-align: left;
    line-height: 20px;
    padding: 0 10px 0 5px;
    min-width: 100px;
    cursor: pointer;
    outline: none;
}
.login-box .client-info button:hover {
    background: #4A9B3B ;
    border: 1px solid #4A9B3B ;
}
.login-box .client-info button::before {
    display: block;
    float: left;
    width: 20px;
    height: 20px;
    font: 12pt Fasolid;
    text-decoration: none;
    margin-left: 5px;
    line-height: 20px;
    margin-right: 10px;
    content: "\f2f6";
}

@media screen and (max-width: 480px){
    input[type="text"],
    input[type="password"]{
      -webkit-appearance: none;
    }

    body {
        min-width: 100vw;
    }

    .login-box{
        width: 90%;
        height: auto;
        left: 5%;
        top: calc(50% - 150px);
    }

    .login-box .client-logo {
        height: 70px; 
        width: 100%;
        background-size: 100px;
        border-top-right-radius: 4px;
        border-bottom-left-radius: 0px;
    }

    .login-box .client-info{
        width: 100%;
    }

    .login-box .client-info .label{
        font: 13pt NunitoBold;
    }

    .login-box .client-info input[type="text"],
    .login-box .client-info input[type="password"]{
        width: 75%;
    }

    .login-box .client-info button {
        float: right;
        margin: 20px 30px 0px 0px;
    }

}