/* upload_form.css */
.content {
    max-width: 500px;
    margin: 60px auto;
    background-color: #fff9ee;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(180, 130, 90, 0.15);
}

.content h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #6e4c1e;
}

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

.content input[type="file"],
.content input[type="number"],
.content button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #c2a57d;
    font-size: 1em;
}

.content button {
    background-color: #e1b07e;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.content button:hover {
    background-color: #c98c50;
}
