:root {    
    --ribbon-fold: 30px;   
}
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.logo {
    height: 70px;
    margin-left: 1px;
    padding: 2px 0 4px 0;
    width: 300px;
    position: relative;
    top: 1px;
}

.sso-login {
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
}

.mt-10p {
    margin-top: 10% !important;
}

.field-validation-error {
    color: red
}

.validation-summary-errors {
    color: red
}

.border-logo-blue {
    /*#1777c2*/
    border-color: #0d6efd !important;
}

.text-logo-blue {
    /*#1777c2*/
    color: #0d6efd !important;
}

.recovery-text {
    color: #3072c0;
    font-size: large;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    padding-top: 25px;
}

.overflow-hidden {
    overflow: hidden;
}

.pt-flow-login {
    display: block;
}

    .pt-flow-login > input, .btn-login {
        border-radius: 999px;
    }

.pt-flow-legacy {
    display: none;
}

.samlButtonDiv {
    padding-bottom: 10px;
}

.a-forgetpassword {
    padding-bottom: 40px;
}

.div-sso-info {
    padding-top: 15px;
    padding-bottom: 30px;
    text-align: center;
}

.span-sso-info {
    font-weight: bold;
    font-size: large;
    color: #2f68b4;
}


.reset-password-msg {
    font-size: large;
    text-align: center;
    color: blue;
    font-weight: bold;
}

.missing-app-code {
    font-size: large;
    color:black;    
    padding-right:5px;
}

.missing-app-code-header {
    font-size: x-large;
    color: black;
    text-decoration:underline;
    font-weight:bold;
}
.h-80{
    min-height:80% !important;
}
.h-18 {
    height: 18% !important;
}
.remove-banner-space{
    padding-left:0px;
    padding-right:0px;
    margin-left:0px;
    margin-right:0px;
}

.fold-ribbon {
    display: inline-block;
    position: relative;
    padding: 15px 45px;
    background: #004469;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    box-shadow: 0 1px 1px #004469;
}

    /* Left Fold */
    .fold-ribbon:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: calc(var(--ribbon-fold)*-1);
        border-top: var(--ribbon-fold) solid #004469;
        border-right: var(--ribbon-fold) solid transparent;
    }

    /* Right Fold */
    .fold-ribbon:after {
        content: "";
        position: absolute;
        right: 0;
        bottom: calc(var(--ribbon-fold)*-1);
        border-top: var(--ribbon-fold) solid #004469;
        border-left: var(--ribbon-fold) solid transparent;
    }