@font-face {
    font-family: "ProximaNovaRegular";
    src: url("../fonts/ProximaNovaRegular/ProximaNovaRegular.eot");
    src: url("../fonts/ProximaNovaRegular/ProximaNovaRegular.eot?#iefix")format("embedded-opentype"),
    url("../fonts/ProximaNovaRegular/ProximaNovaRegular.woff") format("woff"),
    url("../fonts/ProximaNovaRegular/ProximaNovaRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

body{
    font: 14px ProximaNovaRegular;
    background-color: #034982;
}
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-direction: column;
}
.centered{
    width: 350px;
    min-width: 350px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer{
    margin-bottom: 5px;
    color: white;
}

.login-form{
    padding: 30px 40px;
    text-align: left;
}

.login-form input {
    font: 14px ProximaNovaRegular;
    margin-bottom: 10px;
    width: 100%;
    border-width: 0px;
    padding: 10px;
    box-sizing: border-box;
}

.login-form button {
    border-width: 0px;
    color: white;
    background-color: #5795ca;
    padding: 7px 15px;
    border-radius: 5px;
    margin: 0px;
}

.login-block{
    background-color: #e7e7e7;
    border-radius: 5px;
}

.login-block-header{
    width: 100%;
    height: 45px;
    min-height: 45px;
    color: white;
    display: flex;
}

.logo{
    background: url(/static/images/gloria-logo-light.png) 50% no-repeat;
    background-size: contain;
    width: 100%;
    height: 60%;
}
.name{
    flex-basis: 500px;
    padding-left: 20px;
    margin: auto;
}

.error{
    text-align: center;
    margin-bottom: 10px;
    border-radius: 3px;
    background-color: rgba(255, 15, 47, 0.36);
    padding: 3px;
}
.footer{
    text-align: center;
}