html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

html body {
	color: #102f50;
    background-color: #f8f8f9;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#app .container-fluid {
    margin: 0px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.background-lock {
    /* opacity: 0.025;
    position:fixed;
    height:100vh;
    width:100vw;
    z-index: -1;
    display: flex;
    justify-content: center;
    padding: 85px 0 75px 0; */
    position: absolute;
    height: 90px;
    padding-bottom: 1.5rem;
    width: auto;
    display: flex;
    justify-content: center;
    opacity: .05;
}
  
header {
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding: 0 2rem;
    height: 60px;
}

.utility {
    text-align: right;
}

.logo-container img {
    max-height: 34px;
}

#app {
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

header h1 {
    padding-left: 10px;
    font-size: 21px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
}

header h1 span {
    font-weight: 200;
}

header h1 a, header h1 a:visited, header h1 a:active, header h1 a:hover {
    color: #767676;
    text-decoration: none;
}

footer {
    /* border-top: 1px solid #ccc; */
    margin-top: 20px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
main {
    margin-top: 2rem;
    flex: 1;
}

main h1 {
    font-size: 28px;
}

.hint {
    color: #999;
    margin-left: 15px;
}
  
.small {
    color: #767676;
    font-size: 14px;
}

.form-label {
    font-weight: 600;
}

a {
	color: #008d8e;
	text-decoration: none;
}

p {
    max-width: 800px;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

label {
	display: block;
}

.form-item {
    margin: 20px 0 30px 0;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
    height: 44px;
}
.btn {
    padding: 0 1rem;
}

input.btn-primary,
button.btn-primary {
    background-color: #38a0ad;
    border-color: transparent;
    min-width: 100px;
}

input.btn-primary:hover, 
input.btn-check:focus+.btn-primary, 
input.btn-primary:focus,
button.btn-primary:hover, 
button.btn-check:focus+.btn-primary, 
button.btn-primary:focus {
    background-color: #1e97a7;
    border-color: transparent;
}

button.btn-primary.disabled, 
button.btn-primary:disabled {
    background-color: #767676;
    border-color: transparent;
}
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

.hidden {
    visibility: hidden;
    display: none;
}

@media (min-width: 640px) {
    main {
        max-width: none;
    }
}