body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url(images/25003.jpg) no-repeat center center fixed;
    background-size: cover;
    margin-top: 100px;
}

header, footer {
    text-align: center;
    padding: 10px;
    background-color: #4CAF50;
    color: rgb(7, 0, 0);
}

main {
    width: 40%;
    margin: 20px auto;
    background:rgba(16, 14, 14, 0.5); /* Increased transparency */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1.0);
    color: white;
    transition: transform 0.3s ease-in-out;
}

main:hover {
    transform: scale(1.02);
}    
fieldset {
    border: none;
    margin-bottom: 20px;
    padding: 10px;
}

legend {
    font-weight: bold;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input, textarea, select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.radio-group {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    margin-bottom: 10px;
}

.radio-group label {
    display: inline;
    margin-left: 5px;
}

.radio-group input {
    width: auto;
    margin-left: 15px;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #45a049;
    transform: scale(1.02);
}

.rating span {
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease, transform 0.2s ease; /* Smooth transition */
}

.rating span:hover {
    color: orange;
    transform: scale(1.3); /* Make the emoji grow slightly on hover */
}

legend {
    font-weight: bold;
    font-size: 30px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

footer{
    text-align: left;
}