:root {
    --royal-purple: #401f78;
    --primary-accent: #b585ff;
    --neutral-lavender: #f4f2f8;
    --desaturated-purple: #251d38;
}

body {
    font-family: 'Sora', sans-serif;
    background-color: var(--neutral-lavender);
    color: var(--desaturated-purple);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 500px;
    padding: 40px;
    background-color: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(64, 31, 120, 0.05);
}

/* Updated for SVG Logo */
.logo-container {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.logo-img {
    height: 80px;
    /* Adjust this to fit your logo's aspect ratio */
    width: auto;
}

h1 {
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.btn {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    background-color: var(--royal-purple);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
    background-color: var(--primary-accent);
    transform: translateY(-2px);
}

.footer-note {
    margin-top: 3.5rem;
    font-size: 0.75rem;
    color: var(--desaturated-purple);
    opacity: 0.6;
    letter-spacing: 0.05em;
}