/**
 * @license
 * SPDX-License-Identifier: Apache-2.0
*/

:root {
    --primary-blue: #023047;
    --accent-orange: #fb8500;
    --background-light: #f8f9fa;
    --text-color: #343a40;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-light);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
    text-align: center;
}

.container {
    max-width: 600px;
    width: 100%;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.logo {
    display: block;
    max-width: 150px;
    height: auto;
    margin: 0 auto 1.5rem;
}

.gear-icon {
    display: block;
    width: 60px;
    height: 60px;
    margin: 1rem auto;
    fill: var(--primary-blue);
    animation: spin 10s linear infinite;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto;
    font-weight: 300;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .container {
        padding: 1.5rem;
    }
}