/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */
body, html {
    padding-top: 0px;
    height: 100%;
    margin: 0;
    background-color: white;
    background-image: url(../images/AbstractBK2.png);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}



/*html, body {
    height: 100%;
    margin: 0;
    background-color: steelblue;
}*/


.app-navbar {
    background: linear-gradient( 90deg, #070c2a 0%, #0b1548 45%, #111b5a 100% ) !important;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}


/* Logo */
.app-logo {
    height: 50px; /* standard menu height */
    max-height: 50px;
    width: auto;
    margin-left: 100px;
}


.app-navbar .nav-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* User / login area */
.app-navbar .navbar-text,
.app-navbar a {
    color: #ffffff !important;
}

/* Remove default border */
.app-header {
    border-bottom: none;
}


/* Force navbar text to white */
.app-navbar,
.app-navbar a,
.app-navbar .navbar-text {
    color: #ffffff !important;
}

/* Override Bootstrap muted nav color */
.app-navbar .nav-link {
color: #ffffff !important;
}

.app-navbar .nav-link:hover {
    color: #ffffff;
    text-decoration: underline;
}


@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}



/* ---------- App vertical layout ---------- */

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-main {
    flex: 1; /* takes space between header & footer */
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
}

