/*CSS de Login*/

body {
    /*background: url('../img/fondo_index.jpg') no-repeat fixed center center;*/
    background:rgba(255,255,255,0.2);
    background-size: cover;
    font-family: Montserrat;
}
p {
margin: 40px;
}

.logo {
    width: 213px;
    height: 69px;
    background: url('../img/met.png') no-repeat;
    margin: 60px auto;
    margin-bottom: 0;
	margin-left: 45%;
	
}
.login-block {
    width: 320px;
    padding: 20px;
    background: #fff opacity: 0.5;
    border-radius: 5px;
    /*border-top: 5px solid #0057b9;*/
    margin:3% auto;
}
.login-block h1 {
    text-align: center;
    color: #0057b9;
    font-size: 28px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}
.login-block input {
    width: 100%;
    height: 42px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: Montserrat;
    padding: 0 20px 0 50px;
    outline: none;
}
.login-block input#username {
    background: #fff url('http://i.imgur.com/u0XmBmv.png') 20px top no-repeat;
    background-size: 16px 80px;
}
.login-block input#username:focus {
    background: #fff url('http://i.imgur.com/u0XmBmv.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}
.login-block input#password {
    background: #fff url('http://i.imgur.com/Qf83FTt.png') 20px top no-repeat;
    background-size: 16px 80px;
}
.login-block input#password:focus {
    background: #fff url('http://i.imgur.com/Qf83FTt.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}
.login-block input#email{
	background: #fff url('img/form/email.png') 20px top no-repeat;
    background-size: 16px 80px;
}
.login-block input#email:focus {
	background: #fff url('img/form/email.png') 20px bottom no-repeat;
    background-size: 16px 80px;
	
}

.login-block input:active, .login-block input:focus {
    border: 1px solid #0078dd;
}
.login-block .button {
    width:100%;
    height:40px;
    background:#0057b9;
    box-sizing:border-box;
    border-radius: 5px;
    border: 1px solid #0048ac;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Montserrat;
    outline: none;
    cursor:pointer;
}
.login-block button:hover {
    background:#0078dd;
}
.login-block .breg{
    width:auto;
    float:right;
    margin-top:0.6em;
    color:#000;
}
