:root {
    --uni-blue: #004a8f;
    --bs-border-color: var(--uni-blue);
    --bs-border-width: 2px;
}

* {
    font-family: "Roboto", sans-serif;
    font-size: 14.875px;
}

h1 {
    font-size: 1.0625em;
    color: var(--uni-blue);
}

a {
    text-decoration: none;
    color: var(--uni-blue);
}

a:hover {
    text-decoration: underline;
}

div.header {
    border-bottom: var(--uni-blue) solid 1px;
}

div.site-header {
    height: 75px;
    background: url('/asset/img/uniwue-header-bg.png') no-repeat 200px 0 #d1d4d4;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

div.site-header::before {
	box-sizing: border-box;
	display: inline-block;
	content: '';
	width: 75px;
	height: 75px;
	background: #fff;
	border-left: 15px solid var(--uni-blue);
	border-top: 15px solid var(--uni-blue);
	border-bottom: 15px solid var(--uni-blue);
}

img.uni-logo {
    height: 75px;
    vertical-align: unset;
    position: absolute;
    top: 1px;
    left: 0px;
}

div.sub-header {
    text-transform: uppercase;
    font-size: 1.25em;
    line-height: 1.4rem;
    color: var(--uni-blue);
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none;
}

div.sub-header > a {
	padding-left: 2%;
	border-left: 16px solid var(--uni-blue);
    color: var(--uni-blue);
    font-weight: 700;
}

hr.separator {
    height: 0.25em;
    background: var(--uni-blue);
    color: #333;
}

a.language-switcher {
    font-weight: bold;
}

i.status {
    font-size: 5em;
}

i.status.success {
    color: green;
}

i.status.failure {
    color: red;
}

div.return-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

span.required-aster {
    color: red;
}