﻿:root {
  --app-color-footer: #eee;
  --app-color-footer-content: #444;
}

/* Layout */
html, body {
  height: 100%;
  background: #fff;
  background-attachment: fixed;
  overflow: auto;
}

body {
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}

#IdentityPage {
  min-height: 100%;
  margin-bottom: 20px;
}

main {
  display: block;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  padding: 0 1.5rem;
  align-content: center;
}

@media only screen and (min-width: 440px) {
  main {
    align-self: flex-end;
    -webkit-flex-align: end;
    width: 400px;
  }
}

#IdentityContent {
  margin: 0 auto;
}

footer {
  margin-top: auto;
  background: var(--app-color-footer);
}

  footer .footer-logo {
    font-size: 11px;
  }

    footer .footer-logo img {
      margin-left: 5px;
    }

  footer ul {
    list-style: none;
    padding: 0;
    margin: 0.2rem 0;
    text-align: center;
  }

    footer ul li {
      display: inline-block;
      color: var(--app-color-footer-content);
    }

      footer ul li:nth-child(1n+2):before {
        content: '\2022';
        margin: 0 0.5rem 0 0.4rem;
      }

      footer ul li a {
        color: var(--app-color-footer-content);
      }

/* Links */
.link-group {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
  text-align: center;
}

  .link-group li {
    padding: 5px 0;
  }

.inline-local-login {
    display: none;
    cursor: pointer;
}

.inline-local-login:hover {
    text-decoration: underline;
}

/* Buttons */
.btn:active,
.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, .3) !important;
}

/* Login page */
#ClientLogo {
  display: block;
  margin: 1.5rem auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

#ProgrammeLogo {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

#ExternalAuth {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #000;
  margin-bottom: 1.5rem;
}

.alert-validation ul {
  padding-left: 1rem;
  margin: 0;
}

/* Language picker */
#CultureSettings {
  font-size: .9em;
}

.btn {
  min-height: 45px;
}