:root {
    /* Colors extracted from the logo style */
    --primary-teal: #2cbcc4;
    --primary-dark: #1a1a1a;
    --bg-color: #f4f7f6;
    --card-bg: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--primary-dark);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper {
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 480px;
    width: 100%;
    border-top: 6px solid var(--primary-teal); /* Accent bar matching logo */
    animation: fadeIn 1s ease-out;
}

.logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 1.5rem;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    margin: 1.5rem 0;
}

h1 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

p {
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

.tagline {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--primary-teal);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}