﻿:root {
    --black: #090C02;
    --grey: #333232;
    --white: #F5F5F5;
    --blue-1: #023379;
    --blue-2: #0467F1;
    --blue-3: #5EA0FD;
    --blue-4: #C3DBFE;
    --red-1: #A01833;
    --red-2: #E54F6D;
    --red-3: #EC8398;
    --red-4: #F4B8C4;
    --green-1: #2B7869;
    --green-2: #44BBA4;
    --green-3: #87D4C4;
    --green-4: #C3E9E2;
    --font-raleway: 'Raleway', sans-serif;
    --font-open-sans: 'Open Sans', sans-serif;
    font-size: 16px;
}

body {
    font-family: var(--font-raleway);
    background-color: var(--white);
    color: var(--grey);
    background: linear-gradient(to bottom, #bab9b9 0%, var(--white) 30%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
}

.content {
    position: relative;
    z-index: 1;
}

.navbar-header {
    position: relative;
    top: -4px;
}
.navbar-brand > .icon-banner {
  position: relative;
  top: -2px;
  display: inline;
}
.icon {
  position: relative;
  top: -10px;
}
.logged-out iframe {
  display: none;
  width: 0;
  height: 0;
}
.page-consent .client-logo {
  float: left;
}
.page-consent .client-logo img {
  width: 80px;
  height: 80px;
}
.page-consent .consent-buttons {
  margin-top: 25px;
}
.page-consent .consent-form .consent-scopecheck {
  display: inline-block;
  margin-right: 5px;
}
.page-consent .consent-form .consent-description {
  margin-left: 25px;
}
.page-consent .consent-form .consent-description label {
  font-weight: normal;
}
.page-consent .consent-form .consent-remember {
  padding-left: 16px;
}
.grants .page-header {
  margin-bottom: 10px;
}
.grants .grant {
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid lightgray;
}
.grants .grant img {
  width: 100px;
  height: 100px;
}
.grants .grant .clientname {
  font-size: 140%;
  font-weight: bold;
}
.grants .grant .granttype {
  font-size: 120%;
  font-weight: bold;
}
.grants .grant .created {
  font-size: 120%;
  font-weight: bold;
}
.grants .grant .expires {
  font-size: 120%;
  font-weight: bold;
}
.grants .grant li {
  list-style-type: none;
  display: inline;
}
.grants .grant li:after {
  content: ', ';
}
.grants .grant li:last-child:after {
  content: '';
}


.aion_logo {
    background-image: url(../images/aion_logo.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 18%;
    position: absolute;
    left: 0;
    top: 15px;
    width: 100%;
    height: 400px;
}

.panel {
    border-radius: 2rem;
    border: unset;
    padding: 15px 25px 0px 25px;
}

.panel-default > .panel-heading {
    background-color: white;
    border: unset;
}

.panel-title {
    color: var(--blue-1);
    font-size: 30px;
    margin: 10px 0 0 0;
}

.panel-body label {
    font-weight:normal;
}

h3 {
    color: var(--blue-1);
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
}

hr {
    margin-top:10px;
    border: 1px solid var(--blue-1);
}

.login-page {
    margin-top:160px;
}

.btn {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--blue-2);
    border-color: var(--blue-2);
    color: var(--white);
    font-weight: bold;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    color: var(--white) !important;
    background-color: var(--blue-1) !important;
    border-color: var(--blue-1) !important;
}

.form-control {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--blue-1);
    font-size: 1.1rem;
    max-width: 100% !important;
    height: unset;
}



    .form-control:focus {
        color: var(--blue-1);
        border-color: var(--blue-1);
        box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    }

.form-control:focus {
    outline: 0;
}

.panel-login {
    margin: 0 30px;
    filter: drop-shadow(2px 2px 20px #33323350);
}

.panel-body-login {
    padding: 10px 30px 15px 30px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: all 5000s ease-in-out 0s;
    transition-property: background-color, color;
}


@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.alert {
    background-color: white;
    border: 0px;
    border-radius: 5px;
    color: red;
}

.panel .alert-danger {
    background-color: white;
    border: 0px;
    text-align: center;
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s; /* Firefox < 16 */
    -ms-animation: fadein 1s; /* Internet Explorer */
    -o-animation: fadein 1s; /* Opera < 12.1 */
    animation: fadein 1s;
    color: red;
    font-weight: 400;
}

.panel .alert {
    padding:0px;
}

.validation-summary-errors ul {
    list-style: none;
    padding: 0;
}

.page-header {
    border:0;
}

.logout_dropdown {
    position: absolute;
    right: 0;
    top: 0;
    padding: 8px 25px;
    margin:17px;
    background-color: white;
    border-radius: 5px;
    opacity:0.8;
}

a:link,
a:visited,
a:hover,
a:active {
    color: var(--blue-1);
}