/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* --- General & Reset Styles --- */
:root {
    --primary-color: #e63946; /* A strong, Canadian-inspired red */
    --dark-color: #2b2d42;
    --light-color: #edf2f4;
    --grey-color: #8d99ae;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* --- Main Container --- */
.container {
    max-width: 600px;
    width: 100%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

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

/* --- Header & Brand --- */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.brand-accent {
    color: var(--primary-color);
    font-weight: 400;
}

/* --- Main Content --- */
h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.description {
    font-size: 1rem;
    color: var(--grey-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* --- Signup Form --- */
.signup-form {
    margin-bottom: 30px;
}

.form-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.signup-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signup-form input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

.signup-form button {
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.signup-form button:hover {
    background-color: #d62828;
    transform: translateY(-2px);
}

/* --- Footer --- */
.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: var(--grey-color);
    font-size: 1.5rem;
    margin: 0 12px;
    transition: color 0.3s, transform 0.2s;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.8rem;
    color: #b0b8c4;
}

/* --- Responsive Design --- */
@media (min-width: 500px) {
    .signup-form form {
        flex-direction: row;
    }
    .signup-form input {
        flex-grow: 1;
    }
    .signup-form button {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
}
