*, *::before, *::after {
    box-sizing: inherit;
}
html {
    box-sizing: border-box;
}
body{
    background:#ededed;
    background-size: cover;
    font-family: Montserrat;
}
.logo {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    margin: auto;
    height: 100vh;
}
.logo > div:first-child img {
    max-width: 320px;
}

.logo > div:last-child img {
    max-width: 320px;
}
.login-block {
    width: 320px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    border-top: 5px solid #27256c;
}

.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: 14px;
    font-family: Montserrat;
    padding: 0 20px 0 50px;
    outline: none;
}

.login-block input#identity {
    background: #fff url('../images/icones-login.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#identity:focus {
    background: #fff url('../images/icones-login.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input#password {
    background: #fff url('../images/icones-mdp.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#password:focus {
    background: #fff url('../images/icones-mdp.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input:active, .login-block input:focus {
    border: 1px solid #27256c;
}

.login-block button, .login-block input[type=submit] {
    width: 100%;
    height: 40px;
    background: #27256c;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #0c0975;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Montserrat;
    outline: none;
    cursor: pointer;
}

.login-block button:hover, .login-block input[type=submit]:hover {
    background: #403da8;
}
#infoMessage p{
    color:#27256c;
}
