* {
    font-family: "Hind Siliguri", sans-serif;
    font-weight: 600;
    font-style: normal;
}

body {
    padding: 20px;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


h2, h3 {
    text-align: center;
    color: #333;
}

form {
    max-width: 500px;
    margin: auto;
    background-color: #ffffff81;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ffffff8a;
    border-radius: 4px;
    box-sizing: border-box;

    background-color: rgba(255, 255, 255, 0.2);
    color: #020202;
    backdrop-filter: blur(5px);
}

button {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 10s ease infinite;

    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}


button:hover {
    background-color: #0056b3;
}

footer {
    text-align: center;
    padding: 25px;
    color: #00000056;
    font-style: italic;
    font-size: 7px;
}

a {
    text-decoration: none;
    color: #00000056;
    font-weight: 500;
}