﻿.maintenance-container {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    margin-top: 50px;
}

.maintenance-card {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 550px;
    width: 90%;
    animation: fadeIn 0.8s ease-in-out;
}

    .maintenance-card i {
        font-size: 50px;
        color: #1f2937;
        margin-bottom: 20px;
        display: inline-block;
    }

    .maintenance-card h1 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #333;
    }

    .maintenance-card p {
        font-size: 16px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .maintenance-card button {
        padding: 10px 20px;
        font-size: 14px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        background-color: #1f2937;
        color: white;
        transition: background-color 0.3s;
    }

        .maintenance-card button:hover {
            background-color: black;
        }

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
