﻿

/*Password Reset Confirmation*/

.cadmorePasswordResetModal {
    position: fixed; /* Stay in place */
    z-index: 999999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.cadmorePasswordResetModalContent {
    background-color: white;
    margin: 80px auto;
    padding: 0;
    border: 1px solid #888;
    width: 400px;
    height: 200px;
    filter: drop-shadow(5px 5px 5px black);
}

.resetpasswordControls {
    float: right;
    display: inline-flex;
}

.btnPasswordResetCancel, .btnPasswordResetOk {
    transition-duration: 0.4s;
    padding: 5px;
    width: 80px;
    margin-right: 10px;
    border-radius: 4px;
    border: 2px solid #177DAC; /* Cadmore Blue */
    display: block;
}

.btnPasswordResetCancel {
    background-color: white;
    color: #177DAC;
}

    .btnPasswordResetCancel:hover {
        background-color: grey;
        color: white;
    }

.btnPasswordResetOk {
    background-color: #177DAC;
    color: white;
}

    .btnPasswordResetOk:hover {
        background-color: #126485; /* Cadmore Blue Highlight */
    }




/*Login*/

.cadmoreLoginModalContent {
    background-color: white;
    margin: 80px auto;
    padding: 0;
    border: 1px solid #888;
    width: 400px;
    min-width: 400px;
    max-width: 90%;
    height: 600px;
    filter: drop-shadow(5px 5px 5px black);
}

#iframeLogin {
    width:100%;
    height:650px;
    background-color:white;
}

.cadmoreLoginModal {
    position: fixed;  Stay in place 
    z-index: 999999;  Sit on top 
    left: 0;
    top: 0;
    width: 100%;  Full width 
    height: 100%;  Full height 
    overflow: auto;  Enable scroll if needed 
    background-color: rgb(0, 0, 0);  Fallback color 
    background-color: rgba(0, 0, 0, 0.4);  Black w/ opacity 
}

.loginmodalBody {
    background-color: white;
    color: #177DA6;
    font-family: 'Arial Rounded MT';
    height: 100%;
}

.loginmodalCloseBackground {
    color: white;
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 28px;
}

.loginmodalClose {
    cursor: pointer;
    color: red;
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 30px;
}

.loginmodalClose:hover {
    color: dimgrey;
}

.authenticating-message {
    width: 100%;
    margin-top: 160px;
    font-size: 20pt;
    font-weight: bold;
    text-align: center;
}

.authenticating-loader {
    width: 100%;
    margin-top: 50px;
    text-align: center;
}

.authenticating-loader img {
    width: 128px;
    height: 128px;
}

.authentication-success-message {
    width: 100%;
    margin-top: 160px;
    font-size: 20pt;
    font-weight: bold;
    text-align: center;
}

.authentication-success-loader {
    width: 100%;
    margin-top: 50px;
    text-align: center;
}

.authentication-success-loader img {
    width: 128px;
    height: 128px;
}

.logout-success-message {
    width: 100%;
    margin-top: 160px;
    font-size: 20pt;
    font-weight: bold;
    text-align: center;
}

.logout-success-loader {
    width: 100%;
    margin-top: 50px;
    text-align: center;
}

.logout-success-loader img {
    width: 128px;
    height: 128px;
}


