/* Basic Reset and Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 1.6;
    background-color: #1a1a2e; /* Dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Container and Content */
.container {
    width: 90%;
    max-width: 700px;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content {
    animation: fadeIn 2s ease-in-out;
}

/* Typography */
.logo {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700; /* Gold color for the logo */
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Subscription Form */
.subscription-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.subscription-form input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 1rem;
    border: 2px solid #ffd700;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.subscription-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscription-form input[type="email"]:focus {
    outline: none;
    border-color: #fff;
}

.subscription-form button {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 5px;
    background-color: #ffd700; /* Gold button */
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.subscription-form button:hover {
    background-color: #ffc400;
    transform: translateY(-2px);
}

/* Keyframes for animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}