body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #ff9a9e, #fad0c4);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    color: #ffffff;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    max-width: 90%;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #d1c9eb;
    text-shadow: 0 0 5px #ff00cc, 0 0 10px #3333ff;
}

input[type="text"] {
    padding: 0.8rem;
    border: none;
    border-radius: 1rem;
    width: 80%;
    font-size: 1rem;
    text-align: center;
    outline: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}



button {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 2rem;
    background: #ff007f;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 0 10px #ff007f;
}

button:hover {
    background: #ff4da6;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 1.4rem;
    }
    input[type="text"] {
        width: 100%;
    }
}

