﻿/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #150016;
    color: #E3B6B1;
}

.unauthorized-container {
    text-align: center;
    padding: 2rem;
    margin: auto;
    width: 100vw;
    height: 100vh;
}

    .unauthorized-container h1 {
        font-size: 2.5rem;
        color: #29104A;
    }

    .unauthorized-container p {
        font-size: 1.2rem;
        margin: 1rem 0;
        color: #150016;
    }

    .unauthorized-container button {
        background-color: #845162;
        color: #FFE3D8;
        border: none;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .unauthorized-container button:hover {
            background-color: #522c5D;
        }

/* Animation Container */
.animation-container {
    margin: 2rem auto;
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle {
    width: 100px;
    height: 100px;
    border: 5px solid #29104A;
    border-top: 5px solid #FFE3D8;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.lock-icon {
    position: absolute;
    font-size: 2rem;
    color: #29104A;
}
/* Footer Styles */
.footer {
    background-color: #29104A; /* Primary color */
    color: #FFE3D8; /* Light color for contrast */
    padding: 1rem 2rem;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 0.9rem;
    text-align: center;
    flex: 1;
}

.footer-version {
    font-size: 0.9rem;
    text-align: right;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-version {
        margin-top: 0.5rem;
    }
}

/* Flexbox Layout Fix for Footer Position */
html, body {
    height: 100%; /* Ensure the body fills the viewport height */
    margin: 0;
    display: flex;
    flex-direction: column;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the container spans the full viewport */
}

.content-container {
    flex: 1; /* Allows content to expand while keeping the footer at the bottom */
    padding: 1rem;
}

/* Animation Keyframes */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


