﻿/*Fluid container*/
.container-fluid {
    background: url("/images/bglogins.webp") no-repeat; 
    background-size: cover; 
}

/*Error page*/
.error-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('/images/bg-error.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    text-align: center;
    color: #333;
}

.error-page-content {
    padding: 20px;
}

.error-code {
    font-size: 100px;
    font-weight: bold;
    color: #007bff;
}

.card-arrow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

    .card-arrow div {
        position: absolute;
        width: 10px;
        height: 10px;
        background-color: #007bff;
    }

.card-arrow-top-left {
    top: -5px;
    left: -5px;
}

.card-arrow-top-right {
    top: -5px;
    right: -5px;
}

.card-arrow-bottom-left {
    bottom: -5px;
    left: -5px;
}

.card-arrow-bottom-right {
    bottom: -5px;
    right: -5px;
}

.fa-arrow-left {
    margin-right: 5px;
}

.footer-external {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    z-index: 1000;
    bottom: 0px;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-external a {
    font-weight: bold;
    text-decoration: none;
    color: #000 !important;
}

.footer-external img {
    width: 40px;
}

@media (max-width: 768px) {
    .footer-external a {
        font-size: 15px; 
    }
    .footer-external img {
        width: 40px; 
        margin-top: 5px; 
    }
}
