body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0 15px;
}
.container {
    background: #ff4d6d;
    padding: 20px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 350px;
}
h2 {
    color: white;
    font-family: 'Dancing Script', cursive;
    font-size: 28px;
}
.love-text {
    color: white;
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
}
.error-text {
    color: yellow;
    font-family: 'Pacifico', cursive;
    font-size: 16px;
    margin-top: 10px;
}
input {
    width: 90%; /* Adjust width dynamically */
    padding: 10px; /* Balanced padding */
    border-radius: 20px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    max-width: 250px; /* Ensure it doesn't overflow */
    box-sizing: border-box; /* Prevents width issues */
}
button {
    margin-top: 15px;
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    background: #ff2e63;
    color: white;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: 0.3s;
    width: auto;
    min-width: 100px;
}
button:hover {
    background: #ff1a4d;
}
@media (max-width: 480px) {
    .container {
        padding: 15px;
        border-radius: 20px;
        margin: 0 10px;
    }
    h2 {
        font-size: 24px;
    }
    .love-text {
        font-size: 20px;
    }
    input, button {
        font-size: 14px;
        padding: 6px 12px;
    }
}