/* Footer Login Section styling Web */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

.main-content {
    min-height: calc(100vh - 60px);
}

.footer-section {
    background-color: #000000;
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    animation: slideUpFadeIn 0.8s ease-in-out forwards 0.5s;
    border-radius: 0;
}

.footer-section img {
    max-width: 130px;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-text {
    font-size: 1rem;
    margin-top: 15px;
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Login Section styling Mobile */
@media (max-width: 768px) {
    .main-content {
        min-height: calc(100vh - 60px);
    }

    .footer-section {
        background-color: #000000;
        color: white;
        padding: 15px 0;
        text-align: center;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        border-radius: 0;
    }

    .footer-text {
        font-size: 0.8rem;
    }
}
