/* Your custom styles */

.log-in-bg {
    background: url("../img/intro012.jpeg")no-repeat center center;
    background-size: cover;
}


.hm-gradient .full-bg-img {
    /*background: -webkit-linear-gradient(45deg,#68d0ff,#453cf5 75%);*/
    /*
    background: rgba(31, 30, 30, 0.5); 47,   172,  99 */
    background: linear-gradient(45deg, rgba(44, 43, 43, 0.0), rgba(44, 43, 43, 0.8), rgba(59, 59, 59, 0.4), rgba(255, 206, 102, 0.4), rgba(44, 43, 43, 0.0));
    background-size: 600% 600%;
    color: #fff;
    animation: changeColor 15s linear infinite;
}

@keyframes changeColor {
    0%, 20% {
        background-position: 0% 0%;
    }
    100%, 40% {
        background-position: 100% 100%;
    }
    60% {
        background-position: 0% 0%;
    }
}

.full-width{
    width: 100%;
}

.semitrasparent {
    background: rgba(0, 0, 0, 0.5)
}

.module-desc {
    font-size: 12px;
    color: #555;
}

@media print
{
    .no-print, .no-print *
    {
        display: none !important;
    }
}

.form-rounded {
    border-radius: 2rem;
}

.app-logo-primary{
    color: #ffce66;
}


.bg-app-logo-primary{
    background: #ffce66;//255,206,102
}


.semitrasparent-app-color {
    background: rgba(189, 136, 27, 0.5);

}
.semioverlay {
    background: rgba(31, 30, 30, 0.5);

}

.view .maski {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
}

.err-container {
    max-width: 500px;
    margin: 100px auto;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.err-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.err-title {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.err-message {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.err-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.err-button:hover {
    background-color: #388E3C;
}

.err-details {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
    cursor: pointer;
    text-decoration: underline;
}

.err-button-text {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

.err-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-bottom: 20px;
}

    .err-details {
        margin-top: 2rem;
        font-size: 0.875rem;
        color: #6b7280;
        cursor: pointer;
        text-decoration: underline;
    }

    .err-details-content {
        display: none;
        margin-top: 1rem;
        padding: 1rem;
        background-color: #f3f4f6;
        border-radius: 0.375rem;
        font-family: monospace;
        white-space: pre-wrap;
        text-align: left;
        max-width: 600px;
        overflow-x: auto;
    }

    /* Animation */
    @keyframes err-pulse {
        0% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.8;
            transform: scale(0.98);
        }
        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .err-title {
            font-size: 1.75rem;
        }

        .err-message {
            font-size: 1rem;
        }
    }

