@charset "utf-8";
/* CSS Document */
/* Basic Reset & Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: #1f2937; /* Dark Blue/Slate - Adjust if needed */
    color: #f3f4f6;           /* Light Grey/Off-white - Adjust if needed */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header & Logo */
header {
    margin-bottom: 30px;
}

.logo {
    max-width: 256px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 10px; /* Add space if you have text below logo */
}

/* If you use text logo instead/as well */
header h2 {
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
}


/* Main Content */
main h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

main .description {
    font-size: 1.1rem;
    color: #d1d5db; /* Slightly dimmer text for description */
    margin-bottom: 30px;
    max-width: 500px; /* Keep description readable */
}

/* Signup Section */
.signup-section {
    width: 100%;
    margin-bottom: 30px;
}

.signup-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.signup-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.signup-form input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #4b5563; /* Darker border */
    background-color: #374151; /* Slightly lighter background */
    color: #f3f4f6;
    border-radius: 5px;
    font-size: 1rem;
    flex-grow: 1; /* Allow input to take available space */
    min-width: 200px; /* Ensure minimum width */
}

.signup-form input[type="email"]::placeholder {
    color: #9ca3af;
}

.signup-form button {
    padding: 12px 25px;
    background-color: #3b82f6; /* Accent Blue - Adjust if needed */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.signup-form button:hover {
    background-color: #2563eb; /* Slightly darker blue on hover */
}

.privacy-note {
    font-size: 0.85rem;
    color: #9ca3af; /* Dimmer text for less important note */
    margin-top: 10px;
}


/* Footer */
footer {
    margin-top: 20px; /* Add some space above footer */
    width: 100%;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    color: #9ca3af; /* Dim social icons */
    font-size: 1.5rem; /* Adjust icon size */
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.social-links a:hover {
    color: #f3f4f6; /* Brighter on hover */
}

footer small {
    font-size: 0.8rem;
    color: #6b7280; /* Darkest text for copyright */
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    main h1 {
        font-size: 2rem;
    }
    main .description {
        font-size: 1rem;
    }
    .signup-form {
        flex-direction: column; /* Stack form elements vertically */
        align-items: stretch; /* Make elements full width */
    }
    .signup-form input[type="email"],
    .signup-form button {
        width: 100%; /* Ensure they take full width when stacked */
    }
}

