body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ffd6e8, #d8b4fe);
    margin: 0;
    padding: 0;
}


form {
    width: 80%;
    max-width: 900px;
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}


h1 {
    text-align: center;
    color: #8e44ad;
    font-size: 40px;
    margin-bottom: 30px;
}


label {
    color: #6a0dad;
    font-weight: bold;
    margin-right: 5px;
}


input,
select {
    padding: 10px;
    border: 2px solid #d8b4fe;
    border-radius: 10px;
    margin: 5px;
    outline: none;
    transition: 0.3s;
}


input:focus,
select:focus {
    border-color: #c77dff;
    box-shadow: 0 0 8px #c77dff;
}


button,
input[type="submit"] {
    background-color: #c77dff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

button:hover,
input[type="submit"]:hover {
    background-color: #9d4edd;
    transform: scale(1.05);
}


@media (max-width: 768px) {
    form {
        width: 95%;
    }

    input,
    select {
        width: 100%;
        margin-bottom: 10px;
    }
}