/*
AI Assistance Disclosure:
    Portions of this code were developed with the assistance of generative AI tools.
    All AI-assisted contributions have been reviewed by the developer.
*/

/* index.css */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    padding: 40px 30px;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 3rem;       /* increased from 2.2rem */
    margin-bottom: 12px;
    color: #00796b; /* primary teal */
    text-align: center;    /* center heading */
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    box-shadow: 2px 2px 1px 2px rgba(66, 222, 66, 0.1);
}