body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    
    background-image: url('bowl.jpg');
    background-size: cover;       
    background-position: center;   
    background-attachment: fixed;  
    
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

main {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    box-sizing: border-box;
}

.form-div {
    border: 3px solid orange; 
    
    background-color: rgba(255, 255, 255, 0.85); 
    
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    
    backdrop-filter: blur(5px);
}

h1, h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: center;
}


form label {
    font-weight: bold;
    color: #333;
}

form input[type="text"], 
form textarea {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
}

input[type="button"] {
    background-color: orange;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

input[type="button"]:hover {
    background-color: #e68a00;
}

footer h3 {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

fieldset {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

legend {
    font-weight: bold;
    padding: 0 10px;
    color: #333;
}

select {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: rgba(255, 255, 255, 0.9);
}

input[type="number"] {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

p {
    line-height: 1.6;
    color: #333;
}
fieldset {
    border: 1px solid orange;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

legend {
    font-weight: bold;
    color: #333;
}

select, input[type="number"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}