/* body {
        font-family: Arial, sans-serif;
        background: #f4f4f9;
        background-image: url(image/background.jpg);
        padding: 20px;
        max-width: 600px;
        margin: auto;
    } */

    body {
    font-family: Arial, sans-serif;
    background: url('image/background.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 20px;
    max-width: 600px;
    margin: auto;
}

h2{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

    form {
        background: transparent;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 20px 60px;
        backdrop-filter: blur(15px);
        animation: fadeIn 0.8s ease-out;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
 @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-70px); }
            to { opacity: 1; transform: translateY(0); }
        }


    input,
    select,
    textarea {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
        outline: none;
        background: none;
        color: #fff;
        font-size: 15px;
    }

    select{
        color: #b8b8b8;
    }

    option{
        color: #000;
    }

    label{
        color: #fff;
    }

    button {
        background: #ff6600;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
    }

    button:hover {
        background: #cc5200;
    }