﻿
.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/preloader.gif) center no-repeat #fff;
}

.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);*/
}

#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;
}

.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: #607d8b;
    }

.qr-container {
    position: relative;
    display: inline-block;
}

.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);
    }
}

.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: 15px;
}

.btn-primary.rounded-pill {
    transition: all 0.3s ease;
}

    .btn-primary.rounded-pill:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

.fade-section {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


