﻿body {
    /*margin-top: 65px;*/
    background-color: #e9f0f6;
    font-family: 'Roboto', sans-serif;
}
.navbar-4kam {
    background-color: #ffffff;
    border-color: #ffffff;
    height: 78px;
    box-shadow: 0 3px 3px rgba(0,0,0,.3);
}
/*.login-logo {*/
/*    background: url(../logo_4kam.png) 100% 100%/cover no-repeat;*/
/*    width: 210px;*/
/*    min-height: 70px;*/
/*    margin: 0 auto;*/
/*}*/
/*.title-4kam {*/
/*    font-weight: 300;*/
/*}*/
/*.login-page-header{*/
/*    margin-top: 85px;*/
/*}*/
/*.login-page-footer {*/
/*    margin: 0 auto;*/
/*    margin-top: 150px;*/
/*    text-align: center;*/
/*}*/
/*.login-action-link {*/
/*    display: block;*/
/*    font-size: 13px;*/
/*    line-height: 26px;*/
/*}*/
.form-4kam {
    font-family: 'Roboto', sans-serif;
    color: #687693;
    margin-top: 7px;
    font-weight: 500;
}
.btn-4kam {
    background-color: #317588;
    border: none;
    font-size: 12px;
    border-radius: 44px;
    padding: 4px 30px;
    min-width: 100px;
}
    .btn-4kam:hover {
        background-color: #418598;
    }
.submit-button-4kam {
    margin: 0 auto;
}
.w-100 {
    width: 100%;
}
.navbar-header {
    position: relative;
    top: -4px;
    text-align: center;
    color: #687693;
    font-size: 36px;
}
.navbar-brand > .icon-banner {
  position: relative;
  top: -2px;
  display: inline;
  width: 160px;
}
.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: '';
}

.login-flex-container {
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.login-page-container {
    min-height: 100vh;
}

.login-page-container .form-title {
    margin-top: 0;
    margin-bottom: 15px;
}

.login-page-container .form-title.bold {
    font-weight: bold;
}

.login-page-container .form-subtitle {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 16px;
}

.login-page-container .form-container {
    position: relative;
    width: 100%;
    max-width: 609px;
    background-color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 80px 5px 30px 5px;
    margin-top: 60px;
}

.login-page-container .form-container::after {
    content: '';
    position: absolute;
    top: -60px;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background-color: #fff;
    background-image: url(../Logo_4KAM_round.svg);
    border: 5px solid #fff;
    border-radius: 50%;
}

.login-page-container .login-form {
    width: 100%;
    max-width: 350px;
    margin-bottom: 40px;
}

.login-page-container .login-form-content {
    width: 85%;
    max-width: 85%;
}

.login-page-container .form-group {
    margin-bottom: 5px;
}

.login-page-container .login-action-link {
    margin: 0;
}

.login-page-container .display-flex {
    display: flex;
}

.login-page-container .align-items-center {
    align-items: center;
}
.login-page-container .justify-content-end {
    justify-content: end;
}

.control-label {
    color: #6f8ca9;
    font-weight: 500;
}

.form-title,
.form-subtitle {
    color: #666;
}

.clean-btn {
    outline: none;
    border: none;
    padding: 0;
    background-color: transparent;
}

.password-field-container {
    position: relative;
}

.show-pwd-btn {
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    top: 0;
    width: 35px;
    opacity: .7;
    transition: opacity .2s linear;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
}

.show-pwd-btn:hover {
    opacity: 1;
}

.show-pwd-btn[aria-pressed="false"] {
    background-image: url(../icons/eye-solid.svg);
    background-size: 16px;
}

.show-pwd-btn[aria-pressed="true"] {
    background-image: url(../icons/eye-slash-solid.svg);
    background-size: 18px;
}

.login-button-container {
    display: flex;
    justify-content: center;
}
