body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e24e0a, #ef9624);
    margin: 0;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-wrapper {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reclamo-form h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #1d3557;
}

.reclamo-form p {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
}

.reclamo-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.reclamo-form input,
.reclamo-form select,
.reclamo-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s ease;
}

.reclamo-form input:focus,
.reclamo-form select:focus,
.reclamo-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
    outline: none;
}

.reclamo-form button {
    margin-top: 25px;
    width: 100%;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reclamo-form button:hover {
    background-color: #0056b3;
}
