/* Basic Reset and Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Courier New', Courier, monospace; /* Matches the monospace style in the image */
    background-color: #000; /* Black background */
    color: #fff; /* White text */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.content {
    max-width: 600px;
    width: 100%;
}

.logo {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    /* The 'i' dot can be styled further with advanced CSS if needed */
}

h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

hr {
    border: none;
    border-top: 3px solid #fff;
    width: 50px;
    margin: 0 auto 20px auto;
}

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

.signup-form input[type="email"] {
    padding: 10px;
    width: 70%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-family: inherit;
    font-size: 16px;
    color: #333;
}

.signup-form button {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

/* Basic responsiveness */
@media (max-width: 600px) {
    .signup-form input[type="email"],
    .signup-form button {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .signup-form input[type="email"] {
        margin-bottom: 15px;
    }
}
