body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
}

.logo {
    max-width: 300px; /* Adjust size as needed based on your image */
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.signup-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.signup-form input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 250px;
}

.signup-form button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.signup-form button:hover {
    background-color: #2980b9;
}

.social-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #3498db;
    font-size: 1rem;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .signup-form {
        flex-direction: column;
        align-items: center;
    }

    .signup-form input {
        width: 100%;
    }

    .logo {
        max-width: 200px; /* Smaller logo on mobile */
    }
}