:root {
    --primary-blue: #002D5B;
    /* Approximate from logo */
    --primary-orange: #F58220;
    /* Approximate from logo */
    --text-color: #333;
    --bg-color: #f4f7f6;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
}

.content {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-out;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 250px;
    height: auto;
}

.title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.loader {
    width: 100%;
    height: 6px;
    background-color: #eee;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    max-width: 200px;
    margin: 0 auto;
}

.bar {
    width: 50%;
    height: 100%;
    background-color: var(--primary-orange);
    position: absolute;
    left: -50%;
    animation: loading 2s infinite ease-in-out;
    border-radius: 3px;
}

.footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loading {
    0% {
        left: -50%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }

    .content {
        padding: 2rem 1.5rem;
    }

    .logo {
        max-width: 200px;
    }
}