
/* Comman Custom CSS Start */

.error {
    font-size: 80%;
    color: #dc3545;
}

    /* Loader CSS Design */

    /*Hidden class for adding and removing*/
    .lds-dual-ring.hidden {
        display: none;
    }
 
    /*Add an overlay to the entire page blocking any further presses to buttons or other elements.*/
    .overlay {
        position: fixed;
        top: 35%;
        left: 45%;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,.8);
        z-index: 999;
        opacity: 1;
        transition: all 0.5s;
    }
     
    /*Spinner Styles*/
    .lds-dual-ring {
        display: inline-block;
        width: 80px;
        height: 80px;
    }
    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 5% auto;
        border-radius: 50%;
        border: 6px solid #fff;
        border-color: #fff transparent #fff transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }
    
    @keyframes lds-dual-ring {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    .disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

/* Comman Custom CSS End */


/*Login Page CSS Start */

.loginarea__wraper form .login__button button {
    width: 100%;
}

/* Login Page CSS End */

.content-wrapper {
    position: relative;
    min-height: 300px; /* ensure it has height */
}

.overlay-blur-inside {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.7);
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-message {
    background: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 10;
}

.overlay-message h2 {
    margin-bottom: 10px;
    color: #e74c3c;
}
