* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f4f4;
    text-align: center;
}

.content h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 10px;
}

.content h1 span {
    font-weight: 700;
    color: #007BFF;
}

.content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

input[type="email"] {
    padding: 12px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn {
    padding: 12px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    box-sizing: border-box;
}

.footer p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #0056b3;
    text-decoration: underline;
}
