body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color: #f0f0f0;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    position: relative;
}

.text-content {
    margin-top: 30px;
    color: #ad1457;
    text-align: center;
}

.form-container {
    text-align: center;
}

.hidden {
    display: none;
}

.message {
    display: flex;
    justify-content: center;
    font-size: 3rem;
    color: #c2185b;
    margin-bottom: 1.5rem;
    animation: fadeIn 2s;
}

/* .hearts {
    position: relative;
} */

.heart {
    font-size: 2.5rem;
    color: #ff4081;
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.trail-heart {
    font-size: 1rem;
    color: #ff4081;
    position: absolute;
    pointer-events: none;
    animation: fadeTrail 1.5s ease-out forwards, rotateTrail 1.5s linear;
}

.image-container {
    margin-top: 20px;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.image-container img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    bottom: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(100vh);
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-150%);
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeTrail {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

input,
button {
    padding: 12px;
    font-size: 1rem;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    color: white;
    background-color: #1845c2;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #1439a0;
}