@charset "utf-8";

.container {
    height: 100%;
	height:100vh;
}


.logo {
    width: 150px;
    height: 79px;
    margin: 30px auto;
}

.login-block {
    padding: 1.5em;
    background: #fff;
    border-radius: 5px;
    border-top: 5px solid #ff656c;
}

.login-block h1 {
    text-align: center;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.login-block input[type="text"], .login-block input[type="password"]{
    width: 100%;
    height: 42px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 16px;
    padding: 0 20px 0 50px;
    outline: none;
}

.login-block input#username {
    background: #fff 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#username:focus {
    background: #fff 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input#password {
    background: #fff 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#password:focus {
    background: #fff 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input:active, .login-block input:focus {
    border: 1px solid #ff656c;
}

.login-block button {
    width: 100%;
    height: 40px;
    background: #ff656c;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #e15960;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

.login-block button:hover {
    background: #ff7b81;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

