body {
    background-color: #f4f7f6;
    margin: 0;
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

.tm-reclamos-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    color: #333;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-header h1 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 700;
}

.tm-reclamos-container h2 {
    font-size: 1.15rem;
    margin: 35px 0 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    color: #1a1a1a;
    font-weight: 700;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #4a4a4a;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fdfdfd;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 18px;
    margin-top: 30px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-btn:hover {
    background: #333;
}

.submit-btn:disabled {
    background: #ccc;
}

.legal-text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #666;
    margin: 20px 0;
    background: #f9f9f9;
    padding: 15px;
    border-left: 3px solid #ddd;
}

.legal-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px dashed #ddd;
    font-size: 0.75rem;
    line-height: 1.6;
    color: #888;
}

.legal-footer p {
    margin-bottom: 15px;
}

#form-response {
    margin-top: 25px;
    padding: 20px;
    border-radius: 8px;
    display: none;
    text-align: center;
    font-weight: 600;
}

.response-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.response-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
