* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
div.login-container {
    position: absolute;
    left:0;
    right: 0;
    margin: auto;
    border:1px solid #aa0000;
    width: 650px;
    top:calc(50% - 400px/2);
    height: 400px;
    background-color: #f4f4f4;
    box-shadow: -5px 5px 10px rgba(0,0,0,0.2);
}
div.login-container::after {
    display: block;
    position: relative;
    content: '\00A9  UARX Space - All rights reserved.';
    top:100%;
    text-align: center;
    padding-top: 10px;
    font-size: 12px;
    color: #666;
}
div.login-left {
    position: absolute;
    top:0;
    width: 350px;
    background-color: #aa0000;
    height: 400px;
    top: 0;
    background-image: url(../img/bg-login.svg);
}
div.login-form {
    padding: 15px;
    position: absolute;
    width: 300px;
    left: 350px;
    height: 400px;
}
div.title {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    color: white;
    font-size: 15pt;
    text-align: center;
    padding: 10px 30px;
}
div.title b {
    font-weight: 500;
}
div.logo {
    margin-top: 120px;
    margin-bottom: 25px;
    width: 100%;
    height: 60px;
    background-image: url(../img/uarx-h.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: " ";
}
div.login-label {
    margin: 20px 0 30px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    font-variant: small-caps;
    letter-spacing: 1.5px;
}
img.img-app {
    margin-top: 10px;
    height: 70px;
}
div.buttons-box {
    position: relative;
    margin-top: 35px;
    text-align: center;
    right: 0;
    left: 0;
    padding-right: 15px;
}
label.frm-lbl {
    display: block;
    font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
    font-size: 10pt;
    font-weight: 100;
    margin-top: 10px;
}
.input-box input {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 12pt;
    width: 100%;
    border:1px solid #888;
    border-radius: 4px;
    padding: 2px 5px;
    outline: none;
}
.button {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: #2c5697;
    display: inline-block;
    padding: 5px 18px;
    border: 1px solid #2c5697;
    border-radius: 15px;
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    font-variant: small-caps;
    letter-spacing: 1.5px;
}
.button:hover {
    color: white;
    background-color: #2c5697;
}
div.notice {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: normal;
    color: #aa0000;
    text-align: center;
    margin-top: 20px;
}
div.notice.hidden {
    display: none;
}