body {
    background: url("../images/login_bg.jpg");
    background-size: cover;
    background-position: left top;
}

.wrapper {
    background-color: rgba(255,255,255,0.5) !important;
    width: 400px;
    height: auto;
    padding: 40px;
    text-align:left;
    color:#fff;
    position: absolute;
    top: 25%;
    left: 50%;
    box-sizing: border-box;
}

#logo_login {
    padding:0 0 20px;
    text-align: center;
    background: url('../images/logo.svg') center center no-repeat;
    -webkit-background-size: 130%;
    -moz-background-size: 130%;
    -o-background-size: 130%;
    background-size: 80%;
    height: 90px;
	margin: 0 auto 20px;
	box-sizing:border-box;
}

input {
    background: rgba(255, 255, 255, 0.7);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    text-align: center;
	margin:0!important;
	height:42px;
	line-height:42px
}
input:hover {
    /*background:rgba(0,0,0,0.1);*/
}

.fields {
    padding:10px 0;
    color: #0E0E0E;
    text-align: center;
}
.fields:last-child {
    padding-bottom:0px!important;
}

button.send {
    background:#b5354b !important;
	border:none;
    color:#fff;
    height:50px;
    text-transform:uppercase;
    letter-spacing: 0.25em;
	border-radius:3px;
    width:100%;
    margin:10px 0 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
}
button.send:hover {
    background:#710b1f!important;
}

@media only screen and (max-width: 1400px) {
    .wrapper {
        width:400px;
    }
}
@media only screen and (max-width:800px) {
    .wrapper {
        position:relative;
        margin:60% auto 0;
        width:80%;
        padding: 20px;
        top:auto;
        left:auto;
    }
    #flags {
        position:absolute;
        left: 10%;
        top: 300px;
    }
	#logo_login {
		width:70%;
	}
}
@media only screen and (max-width:500px) {
	#logo_login {
		width:80%;
		height:100px;
	}
}
.cleaner {
    clear: both;
    float: right;
}
