﻿
.Form-Input {
    font-size: 14px !important;
}

.Form-Output {
    font-size: 14px !important;
    font-weight: bold;
}

.sw-container {
    padding-bottom: 5% !important;
}

td {
    vertical-align: top;
}

.btn-primary:hover {
    background-color: #ea094b;
    border-color: #ea094b;
}



.qr-container {
    position: relative;
    display: inline-block;
    margin: 10px auto;
}

.qr-code-img {
    max-width: 200px;
    opacity: 0;
    transform: scale(0);
    animation: qrZoomIn 0.5s ease-out forwards;
}

@keyframes qrZoomIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-10deg);
    }

    60% {
        transform: scale(1.1) rotate(5deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}


.otp-input-container {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 20px 0;
}

.otp-input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .otp-input:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }

    .otp-input:not(:placeholder-shown) {
        border-color: #28a745;
    }

.secret-key-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 15px;
    border-radius: 8px;
    word-break: break-all;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    border: 2px dashed #cbd5e0;
    margin-top: -6px;
}

.fade-transition {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#qrTimerDisplay {
    font-size: 16px;
    font-family: "Work Sans", sans-serif;
    letter-spacing: 2px;
}

#captchaCanvas {
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    background: #fff;
    transition: box-shadow 0.2s ease;
    height: 46px;
    width: 100%
}

#DivCaptchaVerification {
    animation: fadeIn 0.3s ease-in;
}

    #DivCaptchaVerification .form-control {
        font-size: 14px;
        padding: 10px 12px;
    }

#txtCaptchaInput {
    text-align: center;
    letter-spacing: 2px;
    font-size: 16px;
    font-weight: 500;
}

/* Refresh button hover effect */
#DivCaptchaVerification button[onclick="generateCaptcha()"]:hover {
    background: rgba(255,255,255,1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #0056b3;
}

/* Refresh button active effect */
#DivCaptchaVerification button[onclick="generateCaptcha()"]:active {
    transform: translateY(-50%) scale(0.95);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.se-pre-con-PopUp {
    /*position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../images/preloader.gif) center no-repeat #fff;*/
    /* background-color: rgba(0, 0, 0, 0.3);*/
}

.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/preloader.gif) center no-repeat #fff;
}

#WarningMessage {
    display: inline-block;
    font-family: 'Source Sans Pro','Helvetica Neue',Helvetica,Arial,sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.42857143;
    top: 45%;
    right: 1%;
}

#password-score, #password-recommendation-heading {
    display: none;
}

#tenantDetailsTable a {
    font-size: 14px;
}

.modal-header {
    font-weight: 500;
    padding: 9px !important;
    border-bottom: 1px solid #e5e5e5;
    border: none !important;
    height: 36px;
    font-size: 14px;
    color: #333 !important;
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.se-pre-con-PopUp-org {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 100000 !important;
    background: url(../images/preloader-nb.gif) center no-repeat;
    backdrop-filter: contrast(0.5);
}



button:focus {
    outline: none;
}

.dropbtn {
    background: none;
    color: inherit;
    border: none;
    cursor: pointer;
}

    .dropbtn:hover, .dropbtn:focus {
        background: none;
        color: white;
    }

.dropdown {
    position: relative;
    display: inline-block;
    float: right;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f1f1f1;
    min-width: 260px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 6px 6px 6px 6px;
}

    .dropdown-content a {
        color: #041e5f;
        padding: 10px 15px;
        text-decoration: none;
        display: block;
        border-bottom: 0.5px solid #0e1f5f;
    }

        .dropdown-content a:hover {
            color: #ffffff;
            background: #257abc;
        }

        .dropdown-content a i {
            padding-right: 6px;
        }

.show {
    display: block;
}

.IdentityProviderSelection {
    box-shadow: 10px 10px 5px #a3b1b6;
    border-width: thick;
}

.horizontalLineSpace {
    position: relative;
    height: 48px;
    width: 100%;
    display: flex; /* Use flexbox for centering */
    align-items: center; /* Align text and lines vertically */
    justify-content: center; /* Center the text */
    margin: auto;
}


.orInLine {
    position: relative;
    z-index: 1;
    padding: 0 10px;
    text-align: center;
    background: transparent; /* Set background to transparent */
    color: #d9d9d9; /* Keep text color */
    font-size: 14px;
    font-weight: 600;
}


.horizontalLine {
    position: relative;
    height: 1px;
    background-color: #d9d9d9;
    top: 28px;
}

.horizontalLineSpace::before,
.horizontalLineSpace::after {
    content: "";
    flex: 1; /* Allows the lines to stretch */
    height: 1px;
    background: #d9d9d9; /* White lines */
    margin: 0 10px;
}
