* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(45deg, #ff6b6b, #f7c6ff);
    color: #000;
    overflow: hidden;
    position: relative;
}

.container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.headline {
    font-size: 5rem;
    font-weight: bold;
    animation: fadeInUp 1.5s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.signup-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signup-form label {
    margin-bottom: 10px;
}

.signup-form input {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.signup-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.signup-form button:hover {
    background-color: #444;
}

.footer {
    position: absolute;
    bottom: 10px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .headline {
        font-size: 3rem;
    }
}