* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    animation: fadeIn 0.8s ease-in;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-drag: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: none;
    -webkit-pointer-events: none;
    cursor: default;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

h1 {
    font-size: 2.5rem;
    color: #333333;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.miva {
    color: #4a9ba8;
}

.pharma {
    color: #1e3a5f;
}

.subtitle {
    font-size: 1.2rem;
    color: #666666;
    font-weight: 300;
}

.message {
    font-size: 2.8rem;
    color: #333333;
    margin-top: 10px;
    font-style: normal;
    font-weight: 700;
}

.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-top: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .logo {
        max-width: 200px;
    }
}
