@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
	background-color: #193444;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	color: #fff;
	/*user-select: none;*/
}
.container {
	max-width: 500px!important;
}
.logo {
	width: auto;
	height: 25px;
}

/* splash */
#splash {
	z-index: 999999991;
	background-color: #193444!important;
}
#splash .bg-fingerprint {
	background-size: contain;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 300px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 2.2em;
}

/* alert */
.spinner-border {
	width: 45px;
	height: 45px;
	color: #f79d1a;
}
.full-screen {
	z-index: 999999990;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: rgba(0,0,0,.8);
	user-select: none;
}
.close {
	color: #193444;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
}

/* message */
#message .dialog {
	background-color: #fff;
	border-radius: .5em;
	width: 100%;
	max-width: 330px;
	color: #000;
	padding: 1em 1.2em;
}
#message.ok .dialog {
    box-shadow: 0 0 15px 10px #478f00;
}
#message.ko .dialog {
    box-shadow: 0 0 15px 10px #ff0000;
}

/* headers */
h1 {
	font-size: 1.8em;
	font-weight: bold;
	margin: 0;
}
h2 {
	font-size: 1.5em;
	font-weight: bold;
	margin: 0;
}
.icon {
	display: block;
	height: 22px;
}

.bg-fingerprint {
	background: transparent url("../img/bg_fingerprint.png") top center no-repeat;
	background-size: auto 300px;
}

/* form */
.form-label,
.form-check-label {
	font-weight: bold;
}
.form-control {
	color: #fff!important;
	background-color: transparent!important;
	border: 2px solid #fff!important;
	box-shadow: none!important;
	text-align: center;
	border-radius: .5em;
	transition: all .3s;
}
.form-control:focus {
	background-color: #193444!important;
}
.form-control:disabled {
	opacity: .5;
}
.form-control::placeholder {
	color: #fff;
	opacity: .75;
	font-weight: normal;
}
.form-check-input {
	box-shadow: none!important;
	border: 2px solid #fff!important;
	background-color: transparent;
	background-size: 90% auto;
}
.form-check-input:checked[type=checkbox] {
	background-color: #fff;
	background-image: url("../img/checked.png");
}

/* send button */
.btn-send {
	color: #193444!important;
	background-color: #f79d1a!important;
	border: none!important;
	box-shadow: none!important;
	border-radius: .5em;
	font-weight: bold;
	transition: all .3s;
}
.btn-send:hover {
	background-color: #999999!important;
}