/* download_form.css */
.content {
    max-width: 400px;
    margin: 70px auto;
    padding: 25px;
    background-color: #fdf6e3;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(100, 80, 50, 0.15);
}

.content h2 {
    text-align: center;
    color: #7a4e22;
    margin-bottom: 20px;
}

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

.content input[type="text"],
.content button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #bba172;
}

.content button {
    background-color: #ddb97a;
    color: white;
    font-weight: bold;
    transition: background 0.2s ease;
    border: none;
}

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

.content p {
    color: #c0392b;
    font-weight: bold;
    text-align: center;
}
